* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --primary-green: #00A86B;
    --primary-green-light: #E8F5F1;
    --primary-green-dark: #008557;
    --secondary-green: #2ECC71;
    --orange: #FF7A3D;
    --orange-light: #FFF3EE;
    --dark-blue: #1A1F3A;
    --dark-gray: #1F2937;
    --light-gray: #F5F8F7;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-blue);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global link styles */
a {
    text-decoration: none;
}

/* Lucide Icons Global Styles */
i[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition-fast);
}

button i[data-lucide],
a i[data-lucide] {
    flex-shrink: 0;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding-inline: clamp(1rem, 3vw, 1.25rem);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-block: clamp(0.75rem, 1.2vw, 1.125rem);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding-block: clamp(0.5rem, 0.8vw, 0.75rem);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary-green);
}
.nav a.active::after {
    transform: none;
}

.nav a:hover {
    color: var(--primary-green);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.phone .phone-number {
    white-space: nowrap;
}

.phone:hover {
    color: var(--primary-green);
    transform: scale(1.05);
}

.btn-orcamento-header {
    background: linear-gradient(135deg, var(--orange) 0%, #FF6B35 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 122, 61, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.btn-orcamento-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-orcamento-header:hover::before {
    left: 100%;
}

.btn-orcamento-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 61, 0.35);
}

.btn-orcamento-header:active {
    transform: translateY(-1px);
}

/* Badge */
.badge-container {
    background: linear-gradient(135deg, #E8F5F1 0%, #D4EDE5 100%);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 168, 107, 0.1);
}

.badge {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.badge-icon {
    background: var(--primary-green);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.5);
}

.badge-icon i {
    color: white;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 168, 107, 0);
    }
}

.badge-text {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F0F9F6 0%, #E8F5F1 50%, #E0F2EC 100%);
    padding-block: clamp(4rem, 12dvh, 7.5rem);
    margin-top: clamp(3.5rem, 4.5vw, 5rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.75rem, 2.8vw + 0.8rem, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: clamp(0.875rem, 2vw, 1.5rem);
    letter-spacing: -0.04em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(0.9rem, 0.5vw + 0.85rem, 1.0625rem);
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: clamp(1rem, 2.5vw, 2rem);
    max-width: min(45ch, 90%);
    font-weight: 500;
    word-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.625rem, 1.8vw, 0.875rem);
    flex-wrap: wrap;
    width: 100%;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 1 1 auto;
    min-width: min(10rem, 45%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #FF6B35 100%);
    color: var(--white);
    border: none;
    padding: clamp(0.9rem, 1.5vw, 1.125rem) clamp(1.25rem, 3vw, 2.25rem);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1rem);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.3px;
    min-height: 3.5rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 122, 61, 0.35);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #27AE60 100%);
    color: var(--white);
    border: none;
    padding: clamp(0.9rem, 1.5vw, 1.125rem) clamp(1.25rem, 3vw, 2.25rem);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1rem);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.3px;
    min-height: 3.5rem;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.35);
}

.btn-secondary:active {
    transform: translateY(-2px);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: none;
    z-index: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 18px;
    transform: rotate(-3deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.image-wrapper:hover {
    transform: rotate(0deg);
}

.image-wrapper img.hero-main-image {
    display: block;
    width: 100%;
    max-width: min(560px, 42vw);
    height: clamp(260px, 42vw, 420px);
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.guarantee-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--orange) 0%, #FF6B35 100%);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(255, 122, 61, 0.35);
    backdrop-filter: blur(4px);
    border: 0;
}

/* Removido efeito pulse para um visual mais sólido */

.guarantee-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-number {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.guarantee-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.decorative-shape {
    position: absolute;
    inset: auto auto 0 0;
    left: -28px;
    top: -22px;
    width: clamp(320px, 48vw, 600px);
    height: clamp(220px, 32vw, 360px);
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.18) 0%, rgba(46, 204, 113, 0.18) 100%);
    border-radius: 28px;
    z-index: -1;
    transform: rotate(6deg);
}

@keyframes rotate-scale {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Features */
.features {
    background: var(--white);
    padding: clamp(2rem, 4vw, 2.5rem) 0;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-green-dark);
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Nossa Missão */
.missao {
    background: #F5F5F5;
    padding: 80px 0;
}

.missao-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 12px;
}

.missao-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    margin: 0 auto 32px;
    border-radius: 2px;
}

.missao-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.missao-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 1.875rem);
    margin-top: clamp(2rem, 5vw, 3.75rem);
    width: 100%;
}

.missao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.missao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 168, 107, 0.15);
}

.missao-card-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: var(--primary-green-light);
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    z-index: 20;
    overflow: visible;
}

.missao-card-icon svg {
    position: relative;
    z-index: 21;
    width: 48px !important;
    height: 48px !important;
    stroke: #00A86B;
    transition: stroke 0.3s;
}

.missao-card:hover .missao-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary-green);
}

.missao-card:hover .missao-card-icon svg {
    stroke: #FFFFFF;
}

.missao-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.missao-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Nossos Serviços */
.servicos {
    background: linear-gradient(135deg, #FAFBFC 0%, #F0F4F8 100%);
    padding: 80px 0;
}

.servicos-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 16px;
}

.servicos-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.servico-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.servico-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.badge-orange {
    background: var(--orange);
}

.badge-blue {
    background: #4169E1;
}

.badge-yellow {
    background: #FFB800;
}

.badge-cyan {
    background: #00B8D4;
}

.servico-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.servico-card:hover .servico-icon {
    transform: scale(1.1) rotate(-5deg);
}

.servico-card:hover .servico-icon i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.icon-green {
    background: var(--primary-green);
}

.icon-blue {
    background: #4169E1;
}

.icon-orange {
    background: var(--orange);
}

.icon-cyan {
    background: #00B8D4;
}

.servico-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.servico-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.servico-list li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.servico-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
}

.servico-image {
    display: none;
}

.btn-servico {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--white);
    margin-top: auto;
    min-height: 50px;
}

.btn-servico:hover {
    transform: translateY(-2px);
}

.btn-servico:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

.btn-servico-green {
    background: var(--primary-green);
}

.btn-servico-green:hover {
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

.btn-servico-blue {
    background: #4169E1;
}

.btn-servico-blue:hover {
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.3);
}

.btn-servico-orange {
    background: var(--orange);
}

.btn-servico-orange:hover {
    box-shadow: 0 6px 20px rgba(255, 122, 61, 0.3);
}

.btn-servico-cyan {
    background: #00B8D4;
}

.btn-servico-cyan:hover {
    box-shadow: 0 6px 20px rgba(0, 184, 212, 0.3);
}

/* Nosso Processo */
.processo {
    background: var(--white);
    padding: 80px 0;
}

.processo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5F1;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.badge-icon-green {
    font-size: 16px;
}

.processo-badge span:last-child {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.processo-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 12px;
}

.processo-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.processo-steps {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
}
a { text-decoration: none; }
.step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    border: none;
    background: transparent;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.step-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    transition: var(--transition-base);
}

.step:hover .step-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-green-dark);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.step-connector {
    width: 100%;
    height: 3px;
    background: #E5E7EB;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #E5E7EB;
    z-index: 0;
}

/* CTA do Processo */
.processo-cta {
    background: var(--primary-green);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-whatsapp,
.btn-cta-phone {
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-whatsapp {
    background: var(--white);
    color: var(--primary-green);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-phone {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cta-phone:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

/* CTA WhatsApp Badge */
.cta-badge-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8F5F1;
    color: var(--primary-green);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    border: 0;
}

.cta-badge-whatsapp .badge-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.cta-badge-whatsapp .badge-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-badge-whatsapp .badge-links a {
    color: var(--primary-green);
    text-decoration: none;
}

.cta-badge-whatsapp .badge-links a:hover {
    text-decoration: underline;
}

.cta-badge-whatsapp .badge-text { letter-spacing: 0.2px; }

@media (max-width: 480px) {
    .cta-badge-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Depoimentos */
.depoimentos {
    background: #F9FAFB;
    padding: 80px 0;
}

.depoimentos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5F1;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.depoimentos-badge span:last-child {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.depoimentos-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 12px;
}

.depoimentos-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.depoimento-destaque {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.depoimento-destaque .depoimento-text,
.depoimento-destaque .author-name,
.depoimento-destaque .author-location {
    color: var(--white);
}

.depoimento-destaque .author-location {
    opacity: 0.9;
}

.depoimento-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.depoimento-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.author-location {
    font-size: 13px;
    color: var(--text-gray);
}

/* Google Rating */
.google-rating {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-logo {
    display: flex;
    align-items: center;
}

.rating-content {
    text-align: center;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-gray);
}

.rating-stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: #FFD700;
    stroke: #FFD700;
    stroke-width: 1.5;
}

.depoimento-stars .star-icon {
    width: 20px;
    height: 20px;
}

.rating-stars .star-icon {
    width: 20px;
    height: 20px;
}

/* FAQ */
.faq {
    background: var(--white);
    padding: 80px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* CTA Box Esquerda */
.faq-cta-box {
    background: var(--primary-green);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.faq-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
}

.faq-cta-badge i {
    color: white;
}

.badge-icon {
    font-size: 14px;
}

.faq-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.faq-cta-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.faq-contact-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-contact-box:hover .contact-icon i {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.contact-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-content p {
    font-size: 14px;
    opacity: 0.9;
}

.btn-faq-whatsapp {
    width: 100%;
    padding: 16px 24px;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-faq-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Accordion Direita */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--primary-green);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-icon {
    font-size: 12px;
    color: var(--primary-green);
    transition: transform 0.3s;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.footer-logo-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo .logo-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    overflow: visible;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9CA3AF;
}

.footer-contact .contact-icon {
    flex-shrink: 0;
    color: var(--primary-green);
    transition: var(--transition-fast);
    width: 20px;
    height: 20px;
}

.footer-contact li:hover .contact-icon {
    transform: scale(1.2);
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.badge-footer {
    background: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #D1D5DB;
}

/* Footer Logo SM */
.footer-logo-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid #374151;
    margin-top: 2rem;
}

.logo-sm-img {
    max-width: 180px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-sm-img:hover {
    opacity: 1;
}

/* Responsive - Desktop fallback removed, using tablet range */

@media (max-width: 768px) {
    .header .container {
        gap: clamp(0.5rem, 2.5vw, 1rem);
    }

    .header-contact {
        gap: clamp(0.25rem, 2vw, 0.75rem);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .missao-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .missao-card {
        padding: 2rem 1.5rem;
    }

    .missao-description {
        font-size: 15px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servicos-title {
        font-size: 32px;
    }

    .servico-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }

    .processo-title {
        font-size: 32px;
    }

    .processo-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step {
        border: 1px solid var(--border-color);
        border-radius: 0.75rem;
        padding: 1.5rem;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .step::after {
        display: none;
    }

    .step-connector {
        display: none;
    }

    .step-title,
    .step-description {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-whatsapp,
    .btn-cta-phone {
        width: 100%;
        justify-content: center;
    }

    .processo-cta {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .depoimentos-title {
        font-size: 32px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-rating {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .rating-score {
        font-size: 28px;
    }
    
    .star-icon {
        width: 14px;
        height: 14px;
    }
    
    .depoimento-stars .star-icon {
        width: 16px;
        height: 16px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-cta-box {
        position: static;
    }

    .faq-cta-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Footer mobile - esconder Links Úteis e Contato */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* ============================================
   SEÇÃO CONTATO
============================================ */
.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contato-info {
    position: sticky;
    top: 100px;
}

.contato-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contato-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contato-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contato-canais {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.canal-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.canal-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.canal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-green-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.canal-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.canal-content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.canal-horario {
    font-size: 13px;
    color: var(--text-light);
}

.horario-box {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid var(--border-color);
}

.horario-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.horario-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
}

.horario-item span {
    font-size: 14px;
    color: var(--text-gray);
}

.horario-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
}

.horario-item.emergencia {
    background: var(--primary-green-light);
    border: 1px solid var(--primary-green);
}

.horario-item.emergencia strong {
    color: var(--primary-green);
}

/* Formulário */
.contato-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 32px;
    text-align: center;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.contato-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-blue);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px var(--primary-green-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.radio-label {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    font-weight: 500;
}

.radio-label span {
    text-align: center;
    width: 100%;
    display: inline-block;
}

.radio-label:hover {
    border-color: var(--primary-green);
}

.radio-label input[type="radio"] {
    margin: 0;
    width: auto;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary-green);
    font-weight: 700;
}

.radio-label:has(input:checked) {
    background: var(--primary-green-light);
    border-color: var(--primary-green);
}

.form-checkbox {
    margin-bottom: 24px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    accent-color: var(--primary-green);
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 168, 107, 0.3);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 107, 0.4);
}

.btn-form-submit:active {
    transform: translateY(0);
}

.form-seguranca {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
}

.form-seguranca span {
    font-size: 13px;
    color: var(--text-gray);
}

.form-seguranca i {
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .contato {
        padding: 60px 0;
    }

    .contato-subtitle {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 24px;
    }

    .form-header {
        padding: 24px;
    }

    .form-header h3 {
        font-size: 22px;
    }

    .radio-group {
        flex-direction: column;
    }
}

/* ============================================
   MOBILE MENU & RESPONSIVE IMPROVEMENTS
   Seguindo padrões modernos e princípios de Josh Comeau
============================================ */

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Toggle Button - Accessible & Animated */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--primary-green-light);
    border-radius: 8px;
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Lucide icons for open/close with animated swap */
.mobile-menu-toggle .icon-menu,
.mobile-menu-toggle .icon-close {
    width: 24px;
    height: 24px;
    color: var(--dark-blue);
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: absolute;
}

.mobile-menu-toggle .icon-menu { opacity: 1; transform: scale(1) rotate(0deg); }
.mobile-menu-toggle .icon-close { opacity: 0; transform: scale(0.85) rotate(-90deg); }

.mobile-menu-toggle.active .icon-menu { opacity: 0; transform: scale(0.85) rotate(90deg); }
.mobile-menu-toggle.active .icon-close { opacity: 1; transform: scale(1) rotate(0deg); }

/* Overlay backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile: mostrar hamburger em telas até 768px */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 100px 0 40px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
        will-change: transform;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav a {
        width: 100%;
        padding: 18px 32px;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .nav a:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .nav a:hover,
    .nav a:active {
        background: var(--primary-green-light);
        color: var(--primary-green);
    }
    
    .nav a::after {
        display: none;
    }
    
    .nav a.active {
        background: var(--primary-green-light);
        color: var(--primary-green);
        font-weight: 700;
    }
    
    .nav a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-green);
    }
    
    .phone-number {
        display: none;
    }
    
    .btn-orcamento-header span {
        display: none;
    }
    
    .btn-orcamento-header {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        border-radius: 8px;
    }
}

/* Breakpoints progressivos - Tablet e Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: min(400px, 90vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 100px 0 40px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
        will-change: transform;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav a {
        width: 100%;
        padding: 20px 40px;
        border-bottom: 1px solid var(--border-color);
        font-size: 17px;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .nav a:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .nav a:hover {
        background: var(--primary-green-light);
        color: var(--primary-green);
    }
    
    .nav a::after {
        display: none;
    }
    
    .nav a.active {
        background: var(--primary-green-light);
        color: var(--primary-green);
        font-weight: 700;
    }
    
    .nav a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-green);
    }
    /* Tablet hero side-by-side */
    .hero-content {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
        gap: clamp(1.25rem, 3.5vw, 2.5rem);
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 2.2vw + 0.7rem, 2.5rem);
        margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    }
    
    .hero-description {
        font-size: clamp(0.875rem, 0.4vw + 0.8rem, 0.9375rem);
        margin-bottom: clamp(0.875rem, 2vw, 1.5rem);
        max-width: 90%;
    }
    
    .hero-buttons {
        gap: 0.625rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: clamp(0.75rem, 1.2vw, 0.875rem) clamp(1rem, 2.2vw, 1.5rem);
        font-size: clamp(0.875rem, 0.3vw + 0.8rem, 0.9375rem);
    }
    
    .image-wrapper {
        padding: clamp(12px, 1.5vw, 16px);
    }
    
    .image-wrapper img.hero-main-image {
        max-width: 100%;
        width: 100%;
        height: clamp(220px, 32vw, 340px);
        object-fit: cover;
    }
    
    .guarantee-badge {
        bottom: -12px;
        right: -12px;
        padding: 10px 14px;
    }
    
    .guarantee-number {
        font-size: 24px;
    }
    
    /* Tablet mission cards - força 2 colunas */
    .missao-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .missao-card {
        padding: clamp(1.5rem, 2vw, 2rem);
    }
    
    .guarantee-label {
        font-size: 10px;
    }
}

/* Mobile optimization */
@media (max-width: 640px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image, 
    .decorative-shape {
        display: none;
    }
    
    .hero-text {
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
        max-width: 90%;
        margin-inline: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-wrap: nowrap;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-text h3 {
        font-size: 14px;
    }
    
    .footer-logo-text span {
        font-size: 9px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .phone {
        min-width: 44px;
    }
}
/* Mobile optimization */
@media (max-width: 640px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image, 
    .decorative-shape {
        display: none;
    }
    
    .hero-text {
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
        max-width: 90%;
        margin-inline: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        flex: 1 1 auto;
    }
}
section {
    scroll-margin-top: 80px;
}

/* Títulos consistentes */
.missao-title,
.depoimentos-title,
.processo-title {
    text-align: center;
    margin-bottom: 16px;
}

.missao-underline {
    margin: 0 auto 24px;
}

/* Botões com altura mínima para touch */
button,
.btn-primary,
.btn-secondary,
.btn-servico {
    min-height: max(44px, 3.2rem);
    min-width: max(44px, 3.2rem);
}

/* Inputs com altura mínima */
input,
select,
textarea {
    min-height: 44px;
}

/* Melhor contraste para acessibilidade */
::selection {
    background: var(--primary-green);
    color: var(--white);
}

/* Focus states melhorados */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Impressão otimizada */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .mobile-menu-toggle {
        display: none;
    }
}
