
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a1f1a;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(10, 31, 26, 0.95);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            gap: 48px;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f4d06f);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu a:hover {
            color: #ffffff;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 12px 32px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
            color: #0a1f1a;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
        }

        /* Navbar dark mode (para fundos claros) */
nav.dark-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 31, 26, 0.1);
}

nav.dark-nav .logo {
    background: linear-gradient(135deg, #1a4d3e 0%, #0a1f1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav.dark-nav .nav-menu a {
    color: rgba(10, 31, 26, 0.8);
}

nav.dark-nav .nav-menu a:hover {
    color: #0a1f1a;
}

nav.dark-nav .nav-menu a::after {
    background: linear-gradient(90deg, #1a4d3e, #0a1f1a);
}
nav.dark-nav .nav-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    color: #0a1f1a;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

nav.dark-nav .nav-cta:hover {
    background: linear-gradient(135deg, #c29d2e 0%, #d4af37 100%);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Mobile toggle dark mode */
nav.dark-nav .mobile-toggle span {
    background: #0a1f1a;
}

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 26px;
            height: 2px;
            background: #ffffff;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 31, 26, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 40px 40px;
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .mobile-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .mobile-menu a:hover {
            color: #d4af37;
            transform: translateX(10px);
        }

        .mobile-menu .nav-cta {
            display: inline-block;
            margin-top: 24px;
            font-size: 16px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 60px 60px;
            position: relative;
            background: linear-gradient(180deg, #0a1f1a 0%, #051510 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-badge span {
            font-size: 13px;
            font-weight: 600;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 32px;
            letter-spacing: -2px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: clamp(18px, 2vw, 22px);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 720px;
            margin-bottom: 48px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .btn-primary {
            padding: 18px 42px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
            color: #0a1f1a;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
        }

        .btn-secondary {
            padding: 18px 42px;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
        }

        /* Features */
  .features {
    padding: 120px 60px;
    background: #ffffff; /* Mudado de #0a1f1a para branco */
}

        .features-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

 .feature-card {
    padding: 48px 40px;
    background: rgba(10, 31, 26, 0.03); /* Ajustado para contrastar com fundo branco */
    border: 1px solid rgba(10, 31, 26, 0.08); /* Ajustado para contrastar com fundo branco */
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}
        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

      .feature-card:hover {
    background: rgba(10, 31, 26, 0.05); /* Ajustado para contrastar com fundo branco */
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 31, 26, 0.08); /* Sombra mais visível */
}


        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

 .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a1f1a; /* Mudado para verde escuro para contrastar com fundo branco */
}



     .feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b; /* Mudado para cinza mais escuro para contrastar com fundo branco */
}

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-container {
                padding: 0 32px;
            }

            .hero {
                padding: 100px 32px 60px;
            }

            .features {
                padding: 80px 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .nav-container {
                padding: 0 20px;
            }

            .hero {
                padding: 100px 20px 40px;
            }

            .features {
                padding: 60px 20px;
            }

            .logo {
                font-size: 24px;
            }
        }
        /* Quem Eu Ajudo Section */
.quem-ajudo {
    padding: 140px 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.quem-ajudo-container {
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1a4d3e;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0a1f1a;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 77, 62, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 62, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.08) 0%, rgba(26, 77, 62, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1a4d3e;
    transition: all 0.4s ease;
}

.info-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    color: #d4af37;
    transform: scale(1.1) rotate(-5deg);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .quem-ajudo {
        padding: 100px 32px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .quem-ajudo {
        padding: 80px 20px;
    }

    .info-card {
        padding: 32px 24px;
    }
}
/* Minha Visão Section */
.visao {
    padding: 140px 60px;
    background: #ffffff;
    position: relative;
}

.visao-container {
    max-width: 1440px;
    margin: 0 auto;
}

.visao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.visao-left .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1a4d3e;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.visao-left .section-title {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: #0a1f1a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.visao-left .section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 48px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-icon-small {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.08) 0%, rgba(26, 77, 62, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4d3e;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-small {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    color: #d4af37;
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Diagram Card */
.diagram-card {
    background: #ffffff;
    border: 1px solid rgba(26, 77, 62, 0.12);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.diagram-header {
    margin-bottom: 32px;
}

.diagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(26, 77, 62, 0.08);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #0a1f1a;
}

.diagram-badge svg {
    color: #d4af37;
}

.diagram-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flow-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.flow-item.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.flow-item:hover {
    background: rgba(26, 77, 62, 0.04);
}

.flow-item.highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.16) 100%);
}

.flow-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    margin-top: 6px;
}

.flow-dot.blue {
    background: #1a4d3e;
    box-shadow: 0 0 0 4px rgba(26, 77, 62, 0.15);
}

.flow-dot.gold {
    background: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.flow-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 4px;
}

.flow-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.flow-connector {
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(26, 77, 62, 0.2), rgba(26, 77, 62, 0.1));
    margin-left: 36px;
}

.diagram-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 77, 62, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.diagram-footer svg {
    color: #1a4d3e;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .visao-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .diagram-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .visao {
        padding: 100px 32px;
    }
}

@media (max-width: 640px) {
    .visao {
        padding: 80px 20px;
    }

    .diagram-card {
        padding: 28px 24px;
    }

    .features-list {
        gap: 24px;
    }

    .flow-item {
        padding: 16px;
    }
    }

.atuacao-container {
    max-width: 1440px;
    margin: 0 auto;
}

.atuacao .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.atuacao .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1a4d3e;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.atuacao .section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0a1f1a;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.atuacao .section-description {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 77, 62, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpSteps 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 62, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1a4d3e 0%, #2d6e5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    transform: scale(1.1) rotate(-5deg);
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(26, 77, 62, 0.12);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.3);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Nota Card */
.nota-card {
    background: #ffffff;
    border: 1px solid rgba(26, 77, 62, 0.12);
    border-left: 4px solid #1a4d3e;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSteps 0.6s ease 0.6s forwards;
}

.nota-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(26, 77, 62, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4d3e;
}

.nota-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.nota-card strong {
    color: #0a1f1a;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUpSteps {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .atuacao {
        padding: 100px 32px;
    }

    .atuacao .section-header {
        margin-bottom: 60px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .atuacao {
        padding: 80px 20px;
    }

    .step-card {
        padding: 32px 24px;
    }

    .nota-card {
        padding: 20px;
        flex-direction: column;
    }
}
/* Sobre Section */
.sobre {
    padding: 140px 60px;
    background: linear-gradient(135deg, #0f2a23 0%, #0a1f1a 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.sobre-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.sobre-left {
    opacity: 0;
    animation: fadeInLeft 1s ease 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sobre-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding-left: 60px;
}

.sobre-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.sobre-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.highlight-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sobre-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Stats Container */
.sobre-right {
    opacity: 0;
    animation: fadeInRight 1s ease 0.4s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #d4af37, #f4d06f);
    transition: height 0.8s ease;
}

.stat-card:hover::before {
    height: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.stat-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .stat-decoration {
    opacity: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-symbol,
.stat-prefix,
.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Stat-specific styles */
.stat-1 {
    animation: slideInStat 0.8s ease 0.6s both;
}

.stat-2 {
    animation: slideInStat 0.8s ease 0.8s both;
}

.stat-3 {
    animation: slideInStat 0.8s ease 1s both;
}

@keyframes slideInStat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Sobre */
@media (max-width: 1024px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .sobre {
        padding: 100px 32px;
    }

    .stat-number {
        font-size: 60px;
    }

    .stat-symbol,
    .stat-prefix,
    .stat-suffix {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .sobre {
        padding: 80px 20px;
    }

    .stat-card {
        padding: 32px 28px;
    }

    .stat-number {
        font-size: 52px;
    }

    .stat-symbol,
    .stat-prefix,
    .stat-suffix {
        font-size: 26px;
    }
}
/* Soluções Section */
.solucoes {
    padding: 140px 60px;
    background: linear-gradient(180deg, #0a1f1a 0%, #051510 100%);
    position: relative;
    overflow: hidden;
}

.solucoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.solucoes-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solucoes .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.solucoes .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.2s forwards;
}

.solucoes .section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.4s forwards;
}

.highlight-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solucoes .section-description {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.6s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Wrapper */
.solucoes-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

/* Solution Cards */
.solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    overflow: hidden;
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.solution-card:nth-child(1).visible { transition-delay: 0.1s; }
.solution-card:nth-child(2).visible { transition-delay: 0.3s; }
.solution-card:nth-child(3).visible { transition-delay: 0.5s; }

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 175, 55, 0.15);
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.solution-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.3));
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Card Content */
.card-content {
    margin-bottom: 24px;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d06f);
    transition: all 0.3s ease;
}

.solution-card:hover .features-list li {
    color: rgba(255, 255, 255, 0.75);
    padding-left: 24px;
}

.solution-card:hover .features-list li::before {
    width: 12px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
}

.solution-card:hover .card-number {
    background: linear-gradient(135deg, #d4af37, #f4d06f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 50%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 80%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 30%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 20s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -50px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50px, 100px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(80px, 50px) scale(1.3);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .solucoes-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .solution-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .solucoes {
        padding: 100px 32px;
    }
}

@media (max-width: 640px) {
    .solucoes {
        padding: 80px 20px;
    }

    .solution-card {
        padding: 28px 24px;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .card-header h3 {
        font-size: 20px;
    }
}
/* Diferenciais Section */
.diferenciais {
    padding: 140px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.diferenciais-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diferenciais .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.diferenciais .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1a4d3e;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding: 0 24px;
}

.diferenciais .section-tag::before,
.diferenciais .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.diferenciais .section-tag::before {
    left: 0;
}

.diferenciais .section-tag::after {
    right: 0;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.diferenciais .section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0a1f1a;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.diferenciais .highlight-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.diferencial-card {
    background: #ffffff;
    padding: 48px 36px;
    border-radius: 20px;
    border: 1px solid rgba(26, 77, 62, 0.08);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpDiferencial 0.8s ease forwards;
}

.diferencial-card:nth-child(1) { animation-delay: 0.1s; }
.diferencial-card:nth-child(2) { animation-delay: 0.2s; }
.diferencial-card:nth-child(3) { animation-delay: 0.3s; }
.diferencial-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUpDiferencial {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    transition: all 0.6s ease;
    opacity: 0;
}

.diferencial-card:hover::after {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.diferencial-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(26, 77, 62, 0.12),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.04) 0%, rgba(212, 175, 55, 0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.diferencial-card:hover .card-number {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.card-icon-diff {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.08) 0%, rgba(26, 77, 62, 0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4d3e;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diferencial-card:hover .card-icon-diff {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    color: #d4af37;
    transform: scale(1.15) rotate(-5deg);
}

.diferencial-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1f1a;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.diferencial-card:hover h3 {
    color: #1a4d3e;
}

.diferencial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .diferenciais {
        padding: 100px 32px;
    }

    .diferenciais .section-header {
        margin-bottom: 60px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .diferencial-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .diferenciais {
        padding: 80px 20px;
    }

    .diferencial-card {
        padding: 36px 28px;
    }

    .card-number {
        font-size: 64px;
        top: 20px;
        right: 20px;
    }

    .card-icon-diff {
        width: 64px;
        height: 64px;
    }

    .card-icon-diff svg {
        width: 28px;
        height: 28px;
    }
}
/* Contato Section */
.contato {
    padding: 140px 60px;
    background: linear-gradient(135deg, #0a1f1a 0%, #051510 100%);
    position: relative;
    overflow: hidden;
}

.contato-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.deco-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: floatCircle 20s ease-in-out infinite;
}

.deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation: floatCircle 25s ease-in-out infinite reverse;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.contato-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.contato-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.2s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    position: relative;
    padding: 0 50px;
}

.contato-tag::before,
.contato-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.contato-tag::before {
    left: 0;
}

.contato-tag::after {
    right: 0;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.contato-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contato-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 36px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpCard 0.8s ease forwards;
}

.contact-method-card:nth-child(1) { animation-delay: 0.3s; }
.contact-method-card:nth-child(2) { animation-delay: 0.5s; }
.contact-method-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.contact-method-card:hover .card-shine {
    left: 100%;
}

/* WhatsApp Card */
.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
}

.whatsapp-card .card-icon-large {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.25));
    color: #25D366;
}

/* Phone Card */
.phone-card {
    border-color: rgba(66, 133, 244, 0.2);
}

.phone-card:hover {
    background: rgba(66, 133, 244, 0.05);
    border-color: rgba(66, 133, 244, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.2);
}

.phone-card .card-icon-large {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(66, 133, 244, 0.25));
    color: #4285F4;
}

/* Email Card */
.email-card {
    border-color: rgba(234, 67, 53, 0.2);
}

.email-card:hover {
    background: rgba(234, 67, 53, 0.05);
    border-color: rgba(234, 67, 53, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(234, 67, 53, 0.2);
}

.email-card .card-icon-large {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(234, 67, 53, 0.25));
    color: #EA4335;
}

/* Card Icon */
.card-icon-large {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-method-card:hover .card-icon-large {
    transform: scale(1.1) rotateY(360deg);
}

/* Card Content */
.contact-method-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-method-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.contact-method-card .contact-value {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-value {
    transform: scale(1.05);
}

/* Card CTA */
.card-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.card-cta svg {
    transition: transform 0.3s ease;
}

.contact-method-card:hover .card-cta {
    color: #ffffff;
}

.contact-method-card:hover .card-cta svg {
    transform: translate(4px, -4px);
}

/* Location Banner */
.location-banner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.25));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.location-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.location-value {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 968px) {
    .contato {
        padding: 100px 32px;
    }

    .contato-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .contato {
        padding: 80px 20px;
    }

    .contact-method-card {
        padding: 36px 28px;
    }

    .card-icon-large {
        width: 80px;
        height: 80px;
    }

    .card-icon-large svg {
        width: 36px;
        height: 36px;
    }

    .location-banner {
        padding: 24px 28px;
        flex-direction: column;
        text-align: center;
    }

    .location-icon {
        width: 56px;
        height: 56px;
    }
}



/* Footer */
.footer {
    background: linear-gradient(180deg, #051510 0%, #0a1f1a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 60px 40px;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-contact svg {
    min-width: 18px;
    color: #d4af37;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4af37;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 32px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link-small:hover {
    color: #d4af37;
}

.footer-dot {
    color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
    border: none;
    border-radius: 50%;
    color: #0a1f1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 32px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 60px 20px 32px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-contact li {
        font-size: 14px;
    }

    .footer-contact svg {
        min-width: 16px;
    }
}   
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 110px; /* Posicionado à esquerda do botão scroll-to-top */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Animação de pulso para chamar atenção */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px; /* Fica acima do botão scroll-to-top em mobile */
        right: 24px;
    }
    
    .scroll-to-top {
        bottom: 24px;
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 85px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}


/* Newsec Contato Section */
.newsec-contato {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0a1f1a 0%, #051510 100%);
    position: relative;
    overflow: hidden;
}

.newsec-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.newsec-deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.newsec-deco-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: newsecFloatCircle 20s ease-in-out infinite;
}

.newsec-deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation: newsecFloatCircle 25s ease-in-out infinite reverse;
}

@keyframes newsecFloatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.newsec-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.newsec-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: newsecFadeInDown 1s ease 0.2s forwards;
}

@keyframes newsecFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsec-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding: 0 50px;
}

.newsec-tag::before,
.newsec-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37);
}

.newsec-tag::before {
    left: 0;
}

.newsec-tag::after {
    right: 0;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.newsec-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.newsec-subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Cards Grid */
.newsec-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.newsec-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: newsecSlideUp 0.8s ease forwards;
}

.newsec-card:nth-child(1) { animation-delay: 0.2s; }
.newsec-card:nth-child(2) { animation-delay: 0.3s; }
.newsec-card:nth-child(3) { animation-delay: 0.4s; }
.newsec-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes newsecSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Shine Effect */
.newsec-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.newsec-card:hover .newsec-card-shine {
    left: 100%;
}

/* WhatsApp Card */
.newsec-whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
}

.newsec-whatsapp:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.2);
}

.newsec-whatsapp .newsec-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.25));
    color: #25D366;
}

/* LinkedIn Card */
.newsec-linkedin {
    border-color: rgba(10, 102, 194, 0.2);
}

.newsec-linkedin:hover {
    background: rgba(10, 102, 194, 0.05);
    border-color: rgba(10, 102, 194, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 102, 194, 0.2);
}

.newsec-linkedin .newsec-icon {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.15), rgba(10, 102, 194, 0.25));
    color: #0A66C2;
}

/* Instagram Card */
.newsec-instagram {
    border-color: rgba(193, 53, 132, 0.2);
}

.newsec-instagram:hover {
    background: rgba(193, 53, 132, 0.05);
    border-color: rgba(193, 53, 132, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(193, 53, 132, 0.2);
}

.newsec-instagram .newsec-icon {
    background: linear-gradient(135deg, rgba(193, 53, 132, 0.15), rgba(225, 48, 108, 0.25));
    color: #C13584;
}

/* Email Card */
.newsec-email {
    border-color: rgba(234, 67, 53, 0.2);
}

.newsec-email:hover {
    background: rgba(234, 67, 53, 0.05);
    border-color: rgba(234, 67, 53, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(234, 67, 53, 0.2);
}

.newsec-email .newsec-icon {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(234, 67, 53, 0.25));
    color: #EA4335;
}

/* Card Icon */
.newsec-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsec-card:hover .newsec-icon {
    transform: scale(1.1) rotateY(360deg);
}

/* Card Content */
.newsec-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsec-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.newsec-value {
    font-size: 15px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.newsec-card:hover .newsec-value {
    transform: scale(1.05);
}

/* Card CTA */
.newsec-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.newsec-cta svg {
    transition: transform 0.3s ease;
}

.newsec-card:hover .newsec-cta {
    color: #ffffff;
}

.newsec-card:hover .newsec-cta svg {
    transform: translate(4px, -4px);
}

/* Location Banner */
.newsec-location {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: newsecFadeInUp 0.8s ease 0.8s forwards;
}

@keyframes newsecFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsec-location-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.25));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.newsec-location-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.newsec-location-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.newsec-location-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .newsec-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
        margin: 0 auto 50px;
    }
}

@media (max-width: 968px) {
    .newsec-contato {
        padding: 100px 32px;
    }

    .newsec-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .newsec-contato {
        padding: 80px 20px;
    }

    .newsec-cards-grid {
        grid-template-columns: 1fr;
    }

    .newsec-card {
        padding: 28px 20px;
    }

    .newsec-icon {
        width: 64px;
        height: 64px;
    }

    .newsec-icon svg {
        width: 32px;
        height: 32px;
    }

    .newsec-location {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
    }

    .newsec-location-icon {
        width: 48px;
        height: 48px;
    }
}
          /* Newsletter Section */
        .newsletter-section {
            padding: 120px 60px;
            background: linear-gradient(180deg, #0a1f1a 0%, #051510 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        .newsletter-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: floatOrb 20s ease-in-out infinite;
        }

        .bg-orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }

        .bg-orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            bottom: -10%;
            left: -5%;
            animation-delay: 7s;
        }

        .bg-orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            top: 40%;
            left: 50%;
            animation-delay: 3s;
        }

        @keyframes floatOrb {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            33% { 
                transform: translate(60px, -80px) scale(1.1);
                opacity: 0.6;
            }
            66% { 
                transform: translate(-40px, 60px) scale(0.9);
                opacity: 0.5;
            }
        }

        /* Floating Particles */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 15s linear infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 14s; }
        .particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 16s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 13s; }
        .particle:nth-child(5) { left: 90%; animation-delay: 3s; animation-duration: 15s; }
        .particle:nth-child(6) { left: 20%; animation-delay: 5s; animation-duration: 17s; }
        .particle:nth-child(7) { left: 60%; animation-delay: 2.5s; animation-duration: 14.5s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 16.5s; }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) scale(1.5);
                opacity: 0;
            }
        }

        .newsletter-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .newsletter-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Side */
        .newsletter-left {
            opacity: 0;
            animation: slideInLeft 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .newsletter-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            color: #d4af37;
            letter-spacing: 3px;
            margin-bottom: 24px;
            text-transform: uppercase;
            position: relative;
        }

        .newsletter-tag::before {
            content: '';
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37);
        }

        .newsletter-tag-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.25));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
            }
        }

        .newsletter-title {
            font-size: clamp(32px, 3.5vw, 44px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .newsletter-title .highlight {
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 50%, #d4af37 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmerText 3s linear infinite;
            display: inline-block;
        }

        @keyframes shimmerText {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .newsletter-description {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
            max-width: 480px;
        }

        .newsletter-cta-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .newsletter-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 36px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d06f 100%);
            color: #0a1f1a;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            border-radius: 12px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 
                0 8px 30px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .newsletter-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .newsletter-cta:hover::before {
            left: 100%;
        }

        .newsletter-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 12px 40px rgba(212, 175, 55, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .newsletter-cta svg {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .newsletter-cta:hover svg {
            transform: translateX(6px);
        }

        .newsletter-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .newsletter-badge svg {
            color: #d4af37;
        }

        /* Right Side */
        .newsletter-right {
            opacity: 0;
            animation: slideInRight 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .newsletter-card {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 12px;
            box-shadow: 
                0 16px 48px rgba(0, 0, 0, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            max-width: 520px;
            margin: 0 auto;
        }

        .newsletter-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 
                0 24px 64px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(212, 175, 55, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
        }

        /* Glow effect */
        .newsletter-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(212, 175, 55, 0.1) 25%, 
                rgba(212, 175, 55, 0.2) 50%, 
                rgba(212, 175, 55, 0.1) 75%, 
                transparent 100%);
            background-size: 400% 400%;
            border-radius: 24px;
            z-index: -1;
            opacity: 0;
            animation: glowRotate 8s linear infinite;
            transition: opacity 0.6s ease;
        }

        .newsletter-card:hover::before {
            opacity: 1;
        }

        @keyframes glowRotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .newsletter-image-wrapper {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
        }

        .newsletter-image-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(10, 31, 26, 0.7) 0%, 
                rgba(212, 175, 55, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .newsletter-image-wrapper:hover::after {
            opacity: 1;
        }

        .newsletter-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .newsletter-image-wrapper:hover .newsletter-image {
            transform: scale(1.06);
        }

        /* Overlay Badge */
        .overlay-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0) rotate(-5deg);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 18px 32px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            color: #0a1f1a;
            font-size: 16px;
            box-shadow: 
                0 10px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 3;
        }

        .newsletter-image-wrapper:hover .overlay-badge {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
        }

        .overlay-badge svg {
            width: 24px;
            height: 24px;
            color: #d4af37;
            animation: bounceIcon 2s ease-in-out infinite;
        }

        @keyframes bounceIcon {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .newsletter-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .newsletter-card {
                max-width: 500px;
            }
        }

        @media (max-width: 968px) {
            .newsletter-section {
                padding: 100px 32px;
            }

            .newsletter-content {
                gap: 50px;
            }
        }

        @media (max-width: 640px) {
            .newsletter-section {
                padding: 80px 20px;
            }

            .newsletter-cta-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }

            .newsletter-cta {
                width: 100%;
                justify-content: center;
            }

            .newsletter-card {
                padding: 10px;
                max-width: 100%;
            }

            .overlay-badge {
                padding: 14px 24px;
                font-size: 14px;
            }
        }