/* Reset and Base Styles */

/* Prevent horizontal overflow */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    /* Desaturate all photos */
    filter: saturate(0);
}

/* New CSS for updated sections */
.values {
    padding: var(--padding-desktop) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Versão 1 - Dot Pattern */
.values-v1 {
    position: relative;
}

.dot-pattern {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: -100px;
    background-image: radial-gradient(circle, rgba(6, 21, 41, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

/* Versão 2 - Graph Paper */
.values-v2 {
    position: relative;
}

.graph-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(6, 21, 41, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 21, 41, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

/* Versão 3 - Geometric Pattern */
.values-v3 {
    position: relative;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(6, 21, 41, 0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(6, 21, 41, 0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(6, 21, 41, 0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(6, 21, 41, 0.04) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

/* Versão 4 - Subtle Lines */
.values-v4 {
    position: relative;
}

.lines-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 49%, rgba(6, 21, 41, 0.03) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(6, 21, 41, 0.03) 50%, transparent 51%);
    background-size: 50px 50px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

/* Versão 5 - Animated Particles */
.values-v5 {
    position: relative;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(6, 21, 41, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 4s; }
.particle:nth-child(2) { left: 20%; animation-delay: -1s; animation-duration: 5s; }
.particle:nth-child(3) { left: 30%; animation-delay: -2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 40%; animation-delay: -3s; animation-duration: 4.5s; }
.particle:nth-child(5) { left: 60%; animation-delay: -1.5s; animation-duration: 5.5s; }
.particle:nth-child(6) { left: 70%; animation-delay: -2.5s; animation-duration: 4.8s; }
.particle:nth-child(7) { left: 80%; animation-delay: -0.5s; animation-duration: 5.2s; }
.particle:nth-child(8) { left: 90%; animation-delay: -3.5s; animation-duration: 4.2s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Versão 6 - Blueprint Style (inspirado em plantas arquitetônicas) */
.values-v6 {
    position: relative;
    background: #f8f9fa;
}

.blueprint-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(rgba(6, 21, 41, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 21, 41, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(6, 21, 41, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 21, 41, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

/* Versão 7 - Hexagon Network (inspirado em estruturas moleculares) */
.values-v7 {
    position: relative;
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, transparent 20px, rgba(6, 21, 41, 0.04) 21px, rgba(6, 21, 41, 0.04) 22px, transparent 23px);
    background-size: 60px 52px;
    background-position: 0 0, 30px 26px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.hexagon-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 45%, rgba(6, 21, 41, 0.02) 49%, rgba(6, 21, 41, 0.02) 51%, transparent 55%),
        linear-gradient(150deg, transparent 45%, rgba(6, 21, 41, 0.02) 49%, rgba(6, 21, 41, 0.02) 51%, transparent 55%),
        linear-gradient(90deg, transparent 45%, rgba(6, 21, 41, 0.02) 49%, rgba(6, 21, 41, 0.02) 51%, transparent 55%);
    background-size: 60px 35px;
}

/* Versão 8 - Circuit Board (inspirado em placas eletrônicas/tecnologia) */
.values-v8 {
    position: relative;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f8f9fa;
    background-image: 
        /* Linhas principais */
        linear-gradient(90deg, transparent 48%, rgba(6, 21, 41, 0.05) 49%, rgba(6, 21, 41, 0.05) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(6, 21, 41, 0.05) 49%, rgba(6, 21, 41, 0.05) 51%, transparent 52%),
        /* Conexões/nós */
        radial-gradient(circle at 25px 25px, rgba(6, 21, 41, 0.08) 2px, transparent 3px),
        /* Linhas secundárias */
        linear-gradient(45deg, transparent 49%, rgba(6, 21, 41, 0.02) 50%, transparent 51%);
    background-size: 100px 100px, 100px 100px, 50px 50px, 25px 25px;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px var(--shadow);
    text-align: center;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy);
}

.mission, .vision {
    padding: var(--padding-desktop) 0;
    text-align: center;
}

.mission {
    background: var(--navy);
}

.vision {
    background: var(--gray-light);
}

.mission-content, .vision-content {
    max-width: 600px;
    margin: 0 auto;
}

.mission h2, .vision h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.mission h2, .mission p {
    color: var(--white);
}

.vision h2, .vision p {
    color: var(--navy);
}

.mission p, .vision p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.founders {
    padding: var(--padding-desktop) 0;
    background: var(--white);
}

.founders h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--navy);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.founder-card {
    text-align: center;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 8px 32px var(--shadow);
}

.founder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 8px);
    margin-bottom: 1rem;
}

.founder-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.founder-info p {
    color: #666;
    font-size: 1rem;
}

.founders-v2 {
    padding: var(--padding-desktop) 0;
    background: var(--white);
}

.founders-v2 h2 {
    /* segue o padrão global de títulos centralizados */
}

.founders-v2 .founders-rows {
    display: grid;
    gap: 2rem;
}

.founders-v2 .founder-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 8px 32px var(--shadow);
}

@media (min-width: 900px) {
    .founders-v2 .founder-row {
        flex-direction: row;
        gap: 2rem;
        padding: 1.5rem;
    }
    .founders-v2 .founder-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.founders-v2 .founder-photo,
.founders-v2 .founder-details {
    flex: 1 1 0;
}

.founders-v2 .founder-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
    box-shadow: 0 8px 24px var(--shadow);
}

.founders-v2 .founder-details h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--navy);
}

.founders-v2 .founder-details .role {
    color: #666;
    margin: 0;
}

.team {
    padding: var(--padding-desktop) 0;
    background: var(--gray-section);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy);
}

.team p {
    text-align: justify !important;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    color: var(--navy);
}

.team-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Founders v2 (layout baseado no arquivo de referência) */
.founders-v2 .f2-list {
    display: grid;
    gap: 28px;
}

.founders-v2 .f2-member {
    display: grid;
    grid-template-columns: 160px 1fr 280px;
    gap: 28px;
    padding: 28px 0;
    align-items: start;
}

.founders-v2 .f2-member + .f2-member {
    border-top: 1px solid #e5e7eb;
}

.founders-v2 .f2-photo {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    background: #f3f4f6;
    display: block;
}

.founders-v2 .f2-name {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    margin: 4px 0 14px;
    color: var(--navy);
    text-align: left !important;
}

.founders-v2 .f2-role {
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 18px;
}

.founders-v2 .f2-tag {
    display: inline-block;
    color: #6b7280;
    font-size: 14px;
    margin-top: 2px;
}

.founders-v2 .f2-divider {
    height: 2px;
    width: 120px;
    background: var(--navy);
    border-radius: 2px;
    margin: 14px 0;
}

.founders-v2 .f2-contacts {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.founders-v2 .f2-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.founders-v2 .f2-contact span {
    color: #6b7280;
}

.founders-v2 .f2-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.founders-v2 .f2-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    text-decoration: none;
    color: var(--navy);
}

.founders-v2 .f2-linkedin svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .founders-v2 .f2-member {
        grid-template-columns: 120px 1fr;
    }
    .founders-v2 .f2-photo {
        width: 120px;
        height: 150px;
    }
    .founders-v2 .f2-contacts {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .team-images {
        grid-template-columns: 1fr;
    }
    
    .team-images img {
        height: auto !important;
        object-fit: contain !important;
    }
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1rem;
    color: var(--white);
}

.service-card ul li:before {
    content: "•";
    color: var(--white);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.specialties {
    padding: var(--padding-desktop) 0;
    background: var(--gray-section);
}

.specialties h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--navy);
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.specialty-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow);
}

.specialty-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy);
    text-align: center;
}

.specialty-card p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.specialty-images-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.specialty-images-one {
    display: flex;
    justify-content: center;
}

.specialty-images-three img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 8px);
}

.specialty-images-one img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 8px);
}

@media (max-width: 768px) {
    .specialty-images-three {
        grid-template-columns: 1fr;
    }
    
    .specialty-images-one img {
        max-width: 100%;
        height: 300px;
    }
}

/* Especialidades V2 - Layout horizontal */
.specialties-v2 {
    padding: 80px 0;
    background: #FFFFFF;
}

.specialties-v2 h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #061529;
}

.specialty-row-v2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem 3rem;
    background: #F8F9FA;
    border-radius: 24px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.specialty-row-v2.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in effect para todos os cards */
.fade-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Mobile - Fatias Horizontais */
.gallery-mobile {
    display: none;
    height: 100vh;
    overflow: hidden;
    background: #061529;
    position: relative;
}

.mobile-gallery-container {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 0;
}

.mobile-gallery-slice {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.mobile-gallery-slice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mobile-gallery-slice:hover img {
    transform: scale(1.05);
}

/* Responsividade das galerias */
@media (max-width: 768px) {
    .gallery-desktop {
        display: none;
    }
    
    .gallery-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-gallery-slice {
        height: calc(100vh / 6);
    }
}

@media (max-width: 480px) {
    .specialty-row-v2 {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
        margin-bottom: 2rem;
    }
}

.specialty-row-reverse-v2 {
    grid-template-columns: 2fr 1fr;
}

.specialty-row-reverse-v2 .specialty-content-v2 {
    order: 2;
}

.specialty-content-v2 h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #061529;
}

.specialty-content-v2 p {
    line-height: 1.6;
    color: #666;
}

.specialty-images-row-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.specialty-images-single-v2 {
    display: flex;
    justify-content: center;
}

.specialty-images-row-v2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.specialty-images-single-v2 img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .specialty-row-v2, .specialty-row-reverse-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specialty-row-reverse-v2 .specialty-content-v2 {
        order: 1;
    }
    
    .specialty-row-reverse-v2 .specialty-images-row-v2 {
        order: 2;
    }
    
    .specialty-images-row-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .specialty-images-row-v2 {
        gap: 0.5rem;
    }
    
    .specialty-images-row-v2 img,
    .specialty-images-single-v2 img {
        border-radius: 12px;
    }
    
    .specialties-v2 h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .specialty-content-v2 h3 {
        font-size: 1.5rem;
    }
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --navy: #061529;
    --gray-light: #F8F9FA;
    --gray-section: #F5F7FA;
    --navy-light: #0A1E3D;
    --shadow: rgba(0, 0, 0, 0.06);
    --radius: 24px;
    --transition: all 0.25s ease-out;
    --max-width: 900px;
    --padding-desktop: 80px;
    --padding-mobile: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 21, 41, 0.1);
}

.navbar .container {
    position: relative;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Mobile Menu Button - Simplified */
.mobile-menu-btn {
    display: none;
    background: var(--navy);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 20px;
    background: white;
    margin: 4px auto;
    transition: 0.3s;
}

/* 1. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 21, 41, 0.85);
    z-index: 2;
}

.hero-content {
    width: 100%;
    padding: var(--padding-desktop) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.hero-headline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 1;
    transform: none;
}

.hero-subhead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-button,
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active,
.cta-button:focus {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--navy) !important;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none !important;
    display: inline-block;
    outline: none;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Anti-underline final - máxima especificidade */
a.cta-button,
a.cta-button:link,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:focus,
a.cta-button:active {
    text-decoration: none !important;
    color: var(--navy) !important;
}

/* 2. Landscape Section */
.landscape {
    padding: var(--padding-desktop) 0;
    background: var(--gray-section);
}

.landscape-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: center;
}

.landscape-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.landscape-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.landscape-text p:last-child {
    margin-bottom: 0;
}

.landscape-text strong {
    color: var(--navy);
    font-weight: 600;
}

.landscape-image {
    width: 100%;
    height: auto;
}

/* 3. Numbers Section */
.numbers {
    padding: var(--padding-desktop) 0;
    background: var(--white);
}

.numbers h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.numbers p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: justify !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--navy);
}

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

.number-card {
    background: var(--white);
    border: 1px solid rgba(6, 21, 41, 0.08);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center !important;
    box-shadow: 0 0 24px var(--shadow);
    transition: var(--transition);
}

.number-card:hover {
    transform: translateY(-4px);
}

.number-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.number-value {
    font-size: 36px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center !important;
}

.number-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.7;
    text-align: center !important;
}

/* 4. Services Section */
.services {
    padding: var(--padding-desktop) 0;
    background: var(--navy);
}

.services p {
    color: var(--white);
    text-align: justify !important;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.services h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
    color: var(--white);
}

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

.service-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.8;
}

/* 5. Gallery Section */
.gallery {
    height: 100vh;
    overflow: hidden;
    background: var(--navy);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 21, 41, 0.3);
    z-index: 1;
    pointer-events: none;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    min-width: 0;
}

.gallery-slide {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-slide:hover img {
    opacity: 0.7;
}

/* 6. Differentials Section */
.differentials {
    padding: var(--padding-desktop) 0;
    background: var(--gray-section);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.differentials-list {
    list-style: none;
    font-size: 1rem;
    line-height: 1.6;
}

.differentials-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.differentials-list li::before {
    content: '•';
    color: var(--navy);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.differentials-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
}

/* 7. About Section */
.about {
    padding: var(--padding-desktop) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.5;
    color: var(--navy);
    font-style: italic;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
}

/* 8. Final CTA Section */
.final-cta {
    padding: var(--padding-desktop) 0;
    background: var(--navy-light);
    color: var(--white);
}

.cta-row {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 48px;
    background: var(--navy);
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--white);
    text-align: left !important;
    white-space: nowrap;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: left !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.cta-whatsapp,
.cta-email {
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-whatsapp {
    background: var(--white);
    color: var(--navy);
}

.cta-whatsapp:hover,
.cta-email:hover {
    transform: translateY(-3px);
}

/* Contact Form Styles */
.cta-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--navy);
}

/* Estilo customizado para upload de arquivo */
.file-upload-container {
    position: relative;
    display: block;
    width: 100%;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--navy);
    min-height: 60px;
}

.file-upload-label:hover {
    border-color: var(--navy);
    background: #f1f5f9;
}

.file-upload-label:has(input:focus) {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.contact-form input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.file-upload-text {
    font-size: 1rem;
}

.file-selected {
    border-color: var(--navy);
    background: #e1f5fe;
    color: var(--navy);
}

.file-selected .file-upload-text::after {
    content: " ✓";
    color: #22c55e;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6, 21, 41, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.form-submit {
    padding: 1rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 0.5rem;
    text-align: center !important;
    width: 100%;
    display: block;
}

.form-submit:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Seção de Códigos */
.codes-section {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(6, 21, 41, 0.1);
    position: relative;
    z-index: 1;
}

.codes-section p {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center !important;
}

.codes-section p:last-child {
    margin-bottom: 0;
}

.code-link {
    color: var(--navy) !important;
    text-decoration: underline !important;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.code-link:hover {
    opacity: 0.7;
}

/* 9. Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info * {
    text-align: center !important;
}

.footer-info .footer-contact {
    text-align: center !important;
}

.footer-social-container .footer-contact {
    text-align: right;
    margin-bottom: 0;
}

/* Footer social icons */
.footer-social-container {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

.footer-social .social-link:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-social-container .contact-block {
    text-align: right !important;
}

.contact-block strong {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-block span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.3;
}

.footer-social-container .contact-block strong,
.footer-social-container .contact-block span {
    text-align: right !important;
}

.contact-block span a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Desabilitar auto-detecção de telefone em mobile */
.footer {
    -webkit-text-size-adjust: none;
}

.footer * {
    -webkit-text-size-adjust: none;
}

/* Footer Bottom Section */
.footer-bottom {
    background: var(--white);
    border-top: 1px solid rgba(6, 21, 41, 0.1);
    padding: 1rem 0;
    text-align: center;
    margin-top: 0;
}

.footer-copyright {
    opacity: 0.8;
    font-size: 0.85rem;
    margin: 0;
    text-align: center !important;
    color: var(--navy) !important;
}



/* Simple fade-in animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --padding-desktop: 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --padding-desktop: var(--padding-mobile);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 var(--padding-mobile);
    }
    
    /* Mostrar botão mobile */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Alinhar logo e menu mobile */
    .nav-content {
        align-items: center !important;
    }
    
    .nav-logo,
    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }
    
    /* Esconder menu desktop */
    .nav-menu {
        display: none !important;
    }
    
    /* Menu mobile ativo */
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        flex-direction: column !important;
        padding: 1rem 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
    }
    
    .nav-menu.active li {
        border-bottom: 1px solid #eee !important;
        margin: 0 !important;
    }
    
    .nav-menu.active a {
        display: block !important;
        padding: 1rem 2rem !important;
        color: var(--navy) !important;
        font-size: 1.1rem !important;
    }
    
    .landscape-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        justify-items: center;
    }
    
    .footer-social-container {
        text-align: center !important;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-social-container .footer-contact {
        text-align: center !important;
    }
    
    .footer-social-container .contact-block {
        text-align: center !important;
    }
    
    .footer-social-container .contact-block strong,
    .footer-social-container .contact-block span {
        text-align: center !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .founders {
        gap: 1rem;
    }
    
    .cta-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-whatsapp,
    .cta-email {
        width: 200px;
    }
    
    .cta-form {
        margin-top: 1rem;
        padding: 1.5rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .number-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-row {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-form {
        padding: 1rem;
    }
    
    .hero-subhead {
        font-size: 1.125rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo img {
        height: 32px;
    }
}
/* Overrides mobile: manter botões na mesma linha e largura auto */
@media (max-width: 768px) {
    .final-cta .cta-buttons { flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; }
    .final-cta .cta-whatsapp, .final-cta .cta-email { width: auto; }
}
