/* ==========================================================================
           RESET & TOKENS DE DESIGN
           ========================================================================== */
        :root {
            /* Cores da Marca */
            --navy: #00152F;
            --navy-hover: #001d40;
            --gold: #C5993C;
            --gold-light: #DEBB73;
            --white: #FFFFFF;
            
            /* Tons Neutros */
            --gray-light: #F9FBFD;
            --gray-border: #E5E7EB;
            
            /* Tipografia */
            --font-sans: 'Outfit', sans-serif;
            --font-serif: 'Cormorant Garamond', serif;
            
            /* Sombras e Transições */
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 30px rgba(197, 153, 60, 0.4);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--navy);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: var(--gray-light);
            line-height: 1.6 !important;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ==========================================================================
           UTILITIES (Reusáveis)
           ========================================================================== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 80px;
            }
        }

        .mesh-bg {
            background-color: var(--navy);
            background-image:
                radial-gradient(circle at 15% 20%, rgba(197, 153, 60, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(197, 153, 60, 0.12) 0%, transparent 50%);
            color: var(--white);
        }

        .text-center { text-align: center; }
        .text-gold { color: var(--gold); }
        .font-serif { font-family: var(--font-serif); }
        .italic { font-style: italic; }
        
        .section-label {
            color: var(--gold);
            font-weight: 600;
            font-size: 14px !important;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 32px !important;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2 !important;
        }

        @media (min-width: 1024px) {
            .section-title { font-size: 40px !important; }
        }

        .divider {
            height: 4px;
            width: 96px;
            background-color: var(--gold);
            margin: 0 auto 32px;
        }

        .divider.left {
            margin-left: 0;
            margin-right: 0;
        }

        /* ==========================================================================
           BOTÃO PREMIUM
           ========================================================================== */
        .btn-premium {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-weight: 700;
            font-size: 14px !important;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 20px 48px;
            border-radius: 4px;
            transition: var(--transition-smooth);
            z-index: 1;
            cursor: pointer;
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: var(--gold);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .btn-premium:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-premium:hover {
            color: var(--navy);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .btn-premium svg {
            margin-left: 12px;
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        
        .btn-premium:hover svg {
            transform: translateX(4px);
        }

        /* ==========================================================================
           NAVBAR
           ========================================================================== */
        .main-nav {
            position: absolute;
            top: 0; left: 0; right: 0;
            z-index: 50;
            padding: 32px 0;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }

        @media (min-width: 1024px) {
            .nav-logo img { height: 48px; }
        }

        .nav-links {
            display: none;
            gap: 32px;
            font-size: 14px !important;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        @media (min-width: 768px) {
            .nav-links { display: flex; align-items: center; }
        }

        .nav-link {
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--gold);
        }

        /* Dropdown */
        .nav-dropdown-wrapper {
            position: relative;
            padding: 4px 0;
        }

        .nav-dropdown-wrapper:hover .nav-link svg {
            transform: rotate(180deg);
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
            width: 260px;
            background-color: var(--navy);
            border: 1px solid rgba(197, 153, 60, 0.2);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
            padding: 8px 0;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            transform: translateY(10px);
        }

        .nav-dropdown-wrapper:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-item {
            padding: 12px 24px;
            color: rgba(255,255,255,0.8);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: background-color 0.3s, color 0.3s;
        }
        
        .nav-dropdown-item:last-child {
            border-bottom: none;
        }

        .nav-dropdown-item:hover {
            color: var(--gold);
            background-color: rgba(255,255,255,0.05);
        }

        .nav-dropdown-item strong {
            display: block;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .nav-dropdown-item span {
            display: block;
            font-size: 10px !important;
            color: rgba(255,255,255,0.5);
            text-transform: none;
            letter-spacing: normal;
        }

        /* ==========================================================================
           HERO SECTION
           ========================================================================== */
        .hero-section {
            position: relative;
            padding-top: 160px;
            padding-bottom: 160px;
            overflow: hidden;
        }

        @media (min-width: 1024px) {
            .hero-section {
                padding-top: 200px;
                padding-bottom: 200px;
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 96px;
            }
        }

        .hero-label {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero-label-line {
            height: 1px;
            width: 48px;
            background-color: var(--gold);
        }

        .hero-label-text {
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 12px !important;
        }

        .hero-title {
            color: var(--white); 
            font-family: var(--font-serif); 
            font-size: 32px !important; 
            font-weight: 700; 
            line-height: 1.1 !important; 
            margin-bottom: 24px; 
        }
        @media (min-width: 1024px) { 
            .hero-title { font-size: 52px !important; } 
        }

        .hero-title .text-gradient {
            background: linear-gradient(to right, #FFFFFF, #DEBB73);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: rgba(255,255,255,0.7);
            font-size: 18px !important;
            font-weight: 300;
            margin-bottom: 48px;
            max-width: 500px;
            border-left: 2px solid rgba(197, 153, 60, 0.3);
            padding-left: 24px;
            line-height: 1.8 !important;
        }

        @media (min-width: 1024px) {
            .hero-desc { font-size: 20px !important; }
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            animation: float 6s ease-in-out infinite;
        }

        @media (min-width: 1024px) {
            .hero-image-wrapper { height: 700px; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .hero-image-frame {
            display: none;
            position: absolute;
            top: 48px; bottom: 48px; left: 48px; right: -32px;
            border: 1px solid rgba(197, 153, 60, 0.4);
            border-radius: 160px 160px 8px 8px;
            z-index: 0;
        }

        @media (min-width: 768px) {
            .hero-image-frame { display: block; }
        }

        .hero-image-container {
            position: absolute;
            top: 0; bottom: 0; left: 0; right: 0;
            border-radius: 160px 160px 8px 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            border: 1px solid rgba(255,255,255,0.05);
            background-color: var(--navy);
        }

        .hero-image-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 21, 47, 0.4);
            mix-blend-mode: multiply;
            z-index: 10;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .hero-image-container:hover .hero-image-overlay {
            opacity: 0.2;
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trust-badge {
            position: absolute;
            bottom: 48px;
            left: -16px;
            z-index: 20;
            background: rgba(0, 21, 47, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(197, 153, 60, 0.25);
            padding: 16px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: var(--shadow-lg);
        }

        @media (min-width: 1024px) {
            .trust-badge { left: -48px; }
        }

        .trust-badge-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(197, 153, 60, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            border: 1px solid rgba(197, 153, 60, 0.3);
        }

        .trust-badge-icon svg { width: 24px; height: 24px; }
        
        .trust-badge-text strong {
            display: block;
            color: var(--white);
            font-size: 14px !important;
            letter-spacing: 0.05em;
        }
        
        .trust-badge-text span {
            color: rgba(255,255,255,0.6);
            font-size: 12px !important;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 4px;
            display: block;
        }

        /* ==========================================================================
           RESULTADOS (Glassmorphism)
           ========================================================================== */
        .results-section {
            position: relative;
            z-index: 20;
            margin-top: -128px;
            padding-bottom: 128px;
        }

        .glass-panel {
            background: linear-gradient(145deg, #001d40 0%, var(--navy) 100%);
            border: 1px solid rgba(197, 153, 60, 0.25);
            border-radius: 16px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
        }

        @media (min-width: 1024px) {
            .glass-panel { padding: 56px; }
        }

        .glass-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
            opacity: 0.5;
        }

        .results-title {
            text-align: center;
            max-width: 768px;
            margin: 0 auto 64px;
            font-family: var(--font-serif);
            font-size: 30px !important;
            line-height: 1.2 !important;
            color: var(--white);
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        @media (min-width: 1024px) {
            .results-title { font-size: 40px !important; }
        }

        .results-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .results-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
            }
        }

        .result-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            border-bottom: 1px solid rgba(197, 153, 60, 0.2);
        }

        @media (min-width: 768px) {
            .result-item {
                border-bottom: none;
                border-right: 1px solid rgba(197, 153, 60, 0.2);
            }
            .result-item:last-child { border-right: none; }
        }

        .result-number {
            color: var(--gold);
            font-family: var(--font-serif);
            font-size: 40px !important;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(197,153,60,0.3);
        }

        @media (min-width: 1024px) {
            .result-number { font-size: 64px !important; }
        }

        .result-text {
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 10.4px;
            font-weight: 600;
            max-width: 200px;
            line-height: 1.6 !important;
        }

        /* ==========================================================================
           SOLUÇÕES
           ========================================================================== */
        .solutions-wrapper {
            background-color: var(--gray-light);
            padding-top: 96px;
            padding-bottom: 128px;
            margin-top: -48px;
            position: relative;
            z-index: 10;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

        @media (min-width: 1024px) {
            .solutions-grid {
                grid-template-columns: 1fr 1fr;
                gap: 64px;
            }
        }

        .solution-card {
            background-color: var(--white);
            border: 1px solid var(--gray-border);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            position: relative;
        }

        .solution-card:hover {
            border-color: rgba(197, 153, 60, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
        }

        .solution-card-hover-bg {
            position: absolute;
            inset: 0;
            background-color: rgba(197, 153, 60, 0.05);
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 12px;
            pointer-events: none;
        }

        .solution-card:hover .solution-card-hover-bg {
            opacity: 1;
        }

        .solution-card h3 {
            font-family: var(--font-serif);
            font-size: 30px !important;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .solution-card > p {
            color: rgba(0, 21, 47, 0.8);
            font-weight: 500;
            font-size: 18px !important;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--gray-border);
        }

        .solution-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .solution-item {
            display: flex;
            align-items: flex-start;
        }

        .solution-item svg {
            color: var(--gold);
            width: 24px;
            height: 24px;
            margin-right: 16px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .solution-item h4 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .solution-item p {
            color: rgba(0, 21, 47, 0.7);
            font-size: 14px !important;
            line-height: 1.6 !important;
        }

        /* ==========================================================================
           SOBRE A DRA.
           ========================================================================== */
        .about-section {
            padding-top: 96px;
            padding-bottom: 96px;
            overflow: hidden;
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-content {
            position: relative;
            z-index: 10;
        }

        .about-text {
            color: rgba(255,255,255,0.8);
            font-size: 18px !important;
            line-height: 1.8 !important;
            margin-bottom: 24px;
        }

        .about-text strong {
            color: var(--white);
        }

        .about-highlight {
            color: var(--gold);
            font-weight: 700;
            font-size: 20px !important;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid rgba(197, 153, 60, 0.2);
        }

        .about-image-wrapper {
            position: relative;
            z-index: 10;
            margin-top: 40px;
        }

        @media (min-width: 1024px) {
            .about-image-wrapper { margin-top: 0; }
        }

        .about-image-frame {
            position: absolute;
            top: 0; bottom: 0; left: 0; right: 0;
            border: 1px solid rgba(197, 153, 60, 0.4);
            border-radius: 160px 160px 8px 8px;
            transform: translate(16px, 16px);
            z-index: 0;
        }

        @media (min-width: 1024px) {
            .about-image-frame { transform: translate(32px, 32px); }
        }

        .about-image-container {
            background-color: var(--navy);
            position: relative;
            height: 500px;
            border-radius: 160px 160px 8px 8px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: var(--shadow-lg);
            z-index: 10;
        }

        @media (min-width: 1024px) {
            .about-image-container { height: 650px; }
        }

        .about-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s;
        }

        .about-image-container:hover img {
            transform: scale(1.05);
        }

        /* ==========================================================================
           EQUIPE
           ========================================================================== */
        .team-wrapper {
            background-color: var(--gray-light);
            padding-top: 96px;
            padding-bottom: 96px;
            position: relative;
            z-index: 10;
        }

        .team-header {
            display: flex;
            flex-direction: column;
            margin-bottom: 64px;
            border-bottom: 1px solid rgba(197, 153, 60, 0.2);
            padding-bottom: 32px;
        }

        @media (min-width: 768px) {
            .team-header {
                flex-direction: row;
                align-items: flex-end;
                justify-content: space-between;
            }
        }

        .team-header-content {
            max-width: 768px;
        }

        .team-header-desc {
            color: rgba(0, 21, 47, 0.6);
            font-size: 16px !important;
            line-height: 1.6 !important;
        }

        .team-header-desc strong {
            color: var(--navy);
            font-weight: 700;
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (min-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }
        }

        .team-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition-smooth);
            height: 100%;
        }

        .team-card:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .team-photo-wrap {
            position: relative;
            width: 100%;
            height: 340px;
            overflow: hidden;
            background-color: #f9fafb;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--gray-border);
        }

        .team-photo-wrap img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            transition: transform 0.7s;
        }

        .team-card:hover .team-photo-wrap img {
            transform: scale(1.05);
        }

        .team-photo-placeholder {
            color: #d1d5db;
        }

        .team-photo-placeholder svg {
            width: 48px;
            height: 48px;
        }

        .team-card-content {
            padding: 32px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .team-card-content h3 {
            font-family: var(--font-serif);
            font-size: 24px !important;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 4px;
        }

        @media (min-width: 1024px) {
            .team-card-content h3 { font-size: 28px !important; }
        }

        .team-card-content h4 {
            color: var(--gold);
            font-weight: 700;
            font-size: 12px !important;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .team-card-content p {
            color: rgba(0, 21, 47, 0.7);
            font-size: 14px !important;
            line-height: 1.6 !important;
        }
        /* ==========================================================================
           FOOTER
           ========================================================================== */
        .main-footer {
            background-color: var(--navy);
            padding: 48px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .footer-logo {
            height: 48px;
            width: auto;
            margin: 0 auto 24px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        @media (min-width: 1024px) {
            .footer-logo { height: 64px; }
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-copy {
            color: rgba(255,255,255,0.4);
            font-size: 14px !important;
        }

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 64px 0;
    background-color: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 56px !important;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1 !important;
}

.stat-text {
    font-size: 18px !important;
    color: rgba(255,255,255,0.8);
    line-height: 1.5 !important;
    font-weight: 300;
}


/* ==========================================================================
   UTILITY COLORS
   ========================================================================== */
.text-white, .delefrati-template-wrapper .text-white { color: var(--white) !important; }
.text-navy, .delefrati-template-wrapper .text-navy { color: var(--navy) !important; }
.text-gold, .delefrati-template-wrapper .text-gold { color: var(--gold) !important; }
