/* Design System FACILITE - Identidade de Marca Premium */
:root {
    /* Cores da Marca */
    --color-wine: #8B1538; /* Vinho Bordô - Cor Primária */
    --color-wine-dark: #6B0F2A;
    --color-wine-light: #A01A45;
    --color-steel: #A9A9A9; /* Aço Escovado - Cor Secundária */
    --color-steel-light: #C0C0C0;
    --color-steel-dark: #808080;
    --color-text: #333333; /* Cinza Escuro - Texto Principal */
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-ultra-light: #F8F9FA;
    --color-gray-light: #E9ECEF;
    --color-gray: #6C757D;
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transições */
    --transition: none;
    
    /* Sombras */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-wine: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    min-width: 200px;
    object-fit: contain;
    transition: none;
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-wine);
    transition: none;
}

.nav-link:hover {
    color: var(--color-wine);
}

.nav-link:hover::after {
    width: 100%;
}

/* Botão Principal - Vinho Bordô com texto branco */
.nav-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-wine);
    color: var(--color-white);
    border-radius: 35px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: none;
    transition: none;
}

.nav-cta-primary:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.nav-cta-primary svg {
    width: 1rem;
    height: 1rem;
    fill: var(--color-white);
}

/* Botão Secundário - Estilo Ghost (borda branca) */
.nav-cta-secondary {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-white);
    color: var(--color-text);
    border-radius: 35px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    background-color: transparent;
    transition: none;
}

.nav-cta-secondary:hover {
    background-color: var(--color-gray-ultra-light);
    border-color: var(--color-steel);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-proof-text {
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 500px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-discount {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text);
}

.hero-cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: var(--color-wine);
    color: var(--color-white);
    border-radius: 35px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: none;
}

.hero-cta-button:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.hero-cta-arrow {
    width: 2rem;
    height: 2rem;
    background-color: var(--color-white);
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-arrow svg {
    width: 1rem;
    height: 1rem;
    fill: var(--color-wine);
}

/* Section Styles - Base - Compactado */
.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 2.5rem;
}

.section-header {
    margin-bottom: 20px;
    margin-top: -30px;
}

.section-prova-social .section-header {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.section-caption {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.caption-rectangle {
    width: 0.25rem;
    height: 1.5rem;
    background-color: var(--color-wine);
}

.caption-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--color-wine);
    display: flex;
    flex-direction: column;
}

.section-title span {
    display: block;
}

.section-title-executive {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    padding-left: 1rem;
    border-left: 4px solid var(--color-wine);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.6;
}

/* Section 2: Nossa História - Compactada */
.section-historia {
    background-color: #F8F9FA;
    padding: 40px 0;
    margin-top: 0;
}

.historia-container-unified {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.historia-content-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: start;
}

.historia-text .section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding-left: 1rem;
    border-left: 4px solid var(--color-wine);
}

.historia-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.historia-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.historia-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

.historia-content strong {
    font-weight: 600;
    color: var(--color-wine);
}

.historia-content .highlight-bold {
    font-weight: 800;
    color: var(--color-wine);
}

.historia-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}


.historia-metric-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: none;
    transition: none;
    border: 1px solid transparent;
}

.historia-metric-card:hover {
    transform: none;
    box-shadow: none;
}

.historia-certification-card {
    border: 2px solid var(--color-wine);
}

.metric-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: var(--color-steel);
}

.metric-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.metric-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.historia-certification-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-ultra-light) 100%);
    border: 2px solid var(--color-wine);
    padding-top: 2.5rem;
    text-align: center;
}

.certification-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: var(--color-steel);
}

.certification-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.certification-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    text-align: center;
}

.certification-text {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.certification-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Section 3: Serviços - Unificado */
.section-servicos {
    background-color: #F8F9FA;
    padding: 40px 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.servico-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: none;
    transition: opacity 0.4s ease, filter 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: conic-gradient(
        from 0deg,
        #00a8a8 0deg,
        #00a8a8 90deg,
        transparent 90deg,
        transparent 180deg,
        #00a8a8 180deg,
        #00a8a8 270deg,
        transparent 270deg,
        transparent 360deg
    );
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    animation: none;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
}

.servico-card:hover {
    transform: none;
    box-shadow: 0 0 20px rgba(0, 168, 168, 0.3);
    opacity: 0.92;
    filter: brightness(1.05);
}

.servico-card:hover::before {
    opacity: 1;
    animation: neon-border-rotate 3s linear infinite;
}

@keyframes neon-border-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.servico-content-unified {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    border-radius: 12px;
    height: 100%;
}

.servico-content-unified {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--color-gray-ultra-light);
    flex-shrink: 0;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.servico-card:hover .servico-image img {
    transform: none;
}

.servico-text-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.servico-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.servico-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
}

/* Section 4: Como Funciona - Linha do Tempo Horizontal */
.section-como-funciona {
    background-color: #FFFFFF;
    padding: 10px 0 40px 0;
}

.timeline-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: start;
    position: relative;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

.section-como-funciona:hover .timeline-item:not(:hover) {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.section-como-funciona:hover .timeline-arrow {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.section-como-funciona:hover .timeline-item:hover ~ .timeline-arrow,
.section-como-funciona:hover .timeline-item:hover + .timeline-arrow,
.section-como-funciona:hover .timeline-item:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background-color: transparent;
    transition: opacity 0.3s ease;
    opacity: 1;
    will-change: opacity;
}

.timeline-item:hover {
    opacity: 1 !important;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #A9A9A9;
    transition: opacity 0.3s ease, color 0.3s ease;
    opacity: 1;
    will-change: opacity;
}

.timeline-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

.timeline-item:hover + .timeline-arrow {
    color: #004d4d;
}


.timeline-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #A9A9A9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: color;
}

.timeline-item:hover .timeline-icon {
    color: #004d4d;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #A9A9A9;
    margin-bottom: 0.75rem;
    line-height: 1;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: color;
}

.timeline-item:hover .timeline-number {
    color: #004d4d;
}

.timeline-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.timeline-text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}


.passos-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-light);
}

.passos-cta-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.passos-cta-text p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.passos-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: var(--color-wine);
    color: var(--color-white);
    border-radius: 35px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: none;
}

.passos-cta-button:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.cta-arrow {
    width: 1.5rem;
    height: 1.5rem;
}

.cta-arrow svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Section 5: Prova Social */
.section-prova-social {
    background-color: #FFFFFF;
    padding: 20px 0;
}

.section-prova-social .section-title {
    color: #1A1A1A;
    text-align: center;
    padding-left: 1rem;
    border-left: 4px solid #004d4d;
}

.section-prova-social .section-subtitle {
    color: var(--color-text-light);
    text-align: center;
    margin: 0 auto;
}

.section-prova-social .caption-text {
    color: var(--color-gray);
}

.section-prova-social .caption-rectangle {
    background-color: #004d4d;
}

.prova-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.section-prova-social:hover .prova-card:not(:hover) {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.prova-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    min-height: 200px;
    transition: opacity 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.prova-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    opacity: 1 !important;
}

.prova-card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.prova-card:hover .prova-card-number {
    background: linear-gradient(
        90deg,
        #1A1A1A 0%,
        #E1E1E1 20%,
        #FFFFFF 40%,
        #E1E1E1 60%,
        #A9A9A9 80%,
        #1A1A1A 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallic-shine 1.5s ease-in-out infinite;
}

@keyframes metallic-shine {
    0% {
        background-position: -100% center;
    }
    100% {
        background-position: 200% center;
    }
}

.prova-card-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.prova-card-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.prova-card-stats .prova-card-number {
    font-size: 3rem;
}

.prova-card-stats p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.prova-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Letreiro Rolante */
.scrolling-text-container {
    margin-top: 3rem;
    padding: 1.5rem 0;
    background-color: #F1F3F5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.scrolling-text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.scrolling-text-fade-left,
.scrolling-text-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.scrolling-text-fade-left {
    left: 0;
    background: linear-gradient(to right, #F1F3F5, transparent);
}

.scrolling-text-fade-right {
    right: 0;
    background: linear-gradient(to left, #F1F3F5, transparent);
}

.scrolling-text-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    animation: scroll-text 40s linear infinite;
    padding: 0 2rem;
}

.scrolling-text-connection {
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
}

.scrolling-text-segment {
    color: #004d4d;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.scrolling-text-separator {
    color: #004d4d;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0.25rem;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section 6: Contato */
.section-contact {
    background-color: #F8F9FA;
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--color-wine);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail h4 {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-white);
    transition: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-wine);
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--color-wine);
    color: var(--color-white);
    border: none;
    border-radius: 35px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition: none;
}

.form-submit:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.form-submit:active {
    transform: none;
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 4rem 2.5rem 2rem;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-advantages h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-advantages ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-advantages a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: none;
}

.footer-advantages a:hover {
    color: var(--color-steel-light);
}

.footer-about h5,
.footer-navigation h5,
.footer-sectors h5 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-about p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-navigation ul,
.footer-sectors ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-navigation a,
.footer-sectors a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: none;
}

.footer-navigation a:hover,
.footer-sectors a:hover {
    color: var(--color-steel-light);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .historia-grid {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prova-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 50px;
        max-width: 250px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 100px 1.5rem 3rem;
    }
    
    .historia-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .historia-text {
        text-align: left;
    }
    
    .historia-cards {
        margin-top: 0;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .passos-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metric-number {
        font-size: 3.5rem;
    }
    
    .timeline-number {
        font-size: 1.25rem;
    }
    
    .timeline-title {
        font-size: 0.9375rem;
    }
    
    .timeline-text {
        font-size: 0.75rem;
    }
    
    .servicos-grid {
        gap: 1.25rem;
    }
    
    .servico-card {
        margin-bottom: 1.25rem;
        width: 90%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .historia-cards {
        gap: 1.25rem;
    }
    
    .historia-metric-card {
        margin-bottom: 1.25rem;
    }
    
    .prova-cards-grid {
        gap: 1.25rem;
    }
    
    .prova-card {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 40px;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
}
