/* ===========================================
   CREDFÁCIL - CSS CENTRALIZADO
   Arquivo CSS unificado para todas as páginas
   =========================================== */

/* ===========================================
   RESET E VARIÁVEIS CSS
   =========================================== */

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

:root {
    /* Cores Principais */
    --primary: #00883C;
    --primary-dark: #006B2F;
    --primary-light: #00A047;
    --secondary: #F47D33;
    --secondary-dark: #E06820;
    --accent: #FF9500;
    /* Cores de Fundo */
    --dark: #0F1419;
    --dark-light: #1A1F27;
    --dark-card: #1E2329;
    /* Cores de Texto */
    --text: #FFFFFF;
    --text-secondary: #B8C5D6;
    /* Efeitos Glass */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    /* Glows */
    --green-glow: rgba(0, 136, 60, 0.3);
    --orange-glow: rgba(244, 125, 51, 0.3);
    /* Cores para página presite */
    --light-bg: #f5f5f5;
    --light-card: #ffffff;
    --light-text: #333333;
    --light-text-secondary: #dfdfdf;
    --red-gradient: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

/* ===========================================
   CONFIGURAÇÕES GERAIS
   =========================================== */

@font-face {
    font-family: 'Inter';
    src: local('Inter');
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===========================================
   BACKGROUND ANIMADO
   =========================================== */

.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0F1419 0%, #1A1F27 50%, #0F1419 100%);
}

.bg-animated::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, var(--green-glow) 0%, transparent 50%), radial-gradient(circle at 80% 80%, var(--orange-glow) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -50px);
    }
}

/* ===========================================
   NAVEGAÇÃO
   =========================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(15, 20, 25, 0.064);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--green-glow);
    transition: all 0.3s ease;
    overflow: visible;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(15, 20, 25, 0.044);
    box-shadow: 0 10px 30px var(--green-glow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

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

.nav-links a.active {
    color: var(--primary);
}

.nav-links li {
    position: relative;
}

/* Navbar Badges - Logos PEGN, ABF, GTPW */

.navbar-badges {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 0.5rem;
}

.navbar-badge-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: brightness(0.95);
}

.navbar-badge-img:hover {
    opacity: 1;
    filter: brightness(1);
}

/* Esconder badges no mobile */

@media (max-width: 1024px) {
    .navbar-badges {
        display: none;
    }
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 10px 30px var(--green-glow);
    transition: all 0.3s ease;
    position: relative;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--green-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Dropdown Menu - Recriado do zero */

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown>a.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

/* Dropdown menu - OCULTO por padrão (DESKTOP) */

@media (min-width: 769px) {
    .nav-links .dropdown {
        position: relative;
    }
    /* Cria uma área de hover contínua entre o botão e o menu */
    .nav-links .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 0.5rem;
        background: transparent;
        z-index: 1000;
    }
    .nav-links .dropdown .dropdown-menu {
        display: none !important;
        position: absolute;
        top: calc(100% - 0.25rem);
        right: 0;
        padding-top: 0.5rem;
        background: var(--dark-card);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding-bottom: 0.5rem;
        min-width: 220px;
        width: max-content;
        list-style: none;
        z-index: 1001;
        white-space: nowrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        transition: opacity 0.2s ease 0.8s, visibility 0.2s ease 0.8s, transform 0.2s ease 0.8s;
    }
    /* Mostra APENAS no hover OU quando tem classe active (DESKTOP) */
    .nav-links .dropdown:hover .dropdown-menu,
    .nav-links .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }
    .nav-links .dropdown:hover .dropdown-toggle i,
    .nav-links .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    /* Mantém o dropdown visível quando o mouse está sobre ele */
    .nav-links .dropdown .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 136, 60, 0.1);
    color: var(--primary);
    padding-left: 2rem;
}

/* Mobile Menu */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 0, 0, 0);
}

.mobile-menu-btn i {
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .fa-bars {
    display: none !important;
}

.mobile-menu-btn.active .fa-times {
    display: block !important;
}

.mobile-menu-btn .fa-times {
    display: none;
}

/* ===========================================
   SEÇÕES HERO
   =========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 10rem 5% 4rem;
    position: relative;
}

.hero-founder {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 5% 4rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-founder-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #FF740C, #FF9000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===========================================
   BOTÕES
   =========================================== */

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 15px 40px var(--green-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px var(--green-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 136, 60, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px var(--green-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px var(--green-glow);
}

/* ===========================================
   VISUAIS HERO
   =========================================== */

.hero-visual {
    position: relative;
    height: 600px;
}

.founder-image {
    position: relative;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green-glow), var(--orange-glow));
    z-index: 1;
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    z-index: 0;
}

.glass-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.glass-card:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 280px;
    animation-delay: 0s;
    border-left: 3px solid var(--primary);
}

.glass-card:nth-child(2) {
    top: 40%;
    right: 5%;
    width: 320px;
    animation-delay: 1s;
    border-left: 3px solid var(--secondary);
}

.glass-card:nth-child(3) {
    bottom: 10%;
    left: 20%;
    width: 260px;
    animation-delay: 2s;
    border-left: 3px solid var(--accent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===========================================
   BADGES E ELEMENTOS ESPECIAIS
   =========================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.founder-title {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.founder-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-box {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
}

/* ===========================================
   SEÇÕES E CONTAINERS
   =========================================== */

.section {
    padding: 6rem 5%;
    position: relative;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================================
   GRIDS E CARDS
   =========================================== */

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px var(--green-glow);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF740C, #FF9000);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   CARDS DE PRODUTOS/MODELOS
   =========================================== */

.products-grid,
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
}

.product-card,
.model-card {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before,
.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before,
.model-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover,
.model-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 80px var(--green-glow);
}

.product-header,
.model-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 136, 60, 0.1) 0%, transparent 100%);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.model-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #FF740C, #FF9000);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.product-card h3,
.model-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.product-card .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.model-price {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.product-body,
.model-body {
    padding: 0 2.5rem 3rem;
}

.product-features,
.model-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li,
.model-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-features li span,
.model-features li span {
    flex: 1;
    word-wrap: break-word;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
    text-align: left;
    line-height: 1.6;
}

.product-features li:last-child,
.model-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF740C, #FF9000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
    /* Alinhamento visual com o texto */
}

/* ===========================================
   CARDS DE CONQUISTAS E VALORES
   =========================================== */

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.achievement-card {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--green-glow);
}

.achievement-card>* {
    position: relative;
    z-index: 1;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text);
}

.achievement-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.value-item {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 40px var(--green-glow);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   PROCESSO E ETAPAS
   =========================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.step-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--green-glow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   BENEFÍCIOS E VANTAGENS
   =========================================== */

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

.benefit-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.benefit-card:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 40px var(--green-glow);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   SEÇÃO DE ESTATÍSTICAS
   =========================================== */

.stats-section {
    background: linear-gradient(135deg, rgba(28, 42, 29, 0.85), rgba(0, 36, 6, 0.85)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1169') center/cover no-repeat;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    /* Efeito parallax */
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: white;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--green-glow);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===========================================
   SEÇÃO CTA
   =========================================== */

.cta-section {
    background: linear-gradient(135deg, #123127, #152420);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-radius: 32px;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-container>* {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-container p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ===========================================
   FORMULÁRIOS
   =========================================== */

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.info-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.info-card:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 40px var(--green-glow);
}

.info-card .feature-icon {
    margin-left: 0;
    margin-right: auto;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.info-card a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--primary);
}

/* Contato rápido (página contato sem formulário) */
.contato-quick-wrap {
    max-width: 1100px;
}

.contato-quick-section {
    padding-top: 0;
    padding-bottom: 4.5rem;
    margin-top: -2rem;
}

.contato-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.contato-quick-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contato-quick-card .feature-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.contato-quick-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contato-quick-card p {
    color: var(--text-secondary);
    word-break: break-word;
}

.contato-quick-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px var(--green-glow);
}

@media (max-width: 900px) {
    .contato-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Hero Grid */

.form-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.form-hero-image {
    position: sticky;
    top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
}

.form-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.form-hero-img:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .form-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-hero-image {
        position: relative;
        top: 0;
        order: -1;
        width: 100%;
    }
    .form-hero-img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
}

.contact-form {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--green-glow);
}

/* Estilos para campos com erro */

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group.has-error label {
    color: #ff4444;
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

.form-group.has-error .radio-label,
.form-group.has-error .checkbox-label {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

/* Mensagens de erro e sucesso melhoradas */

.form-error {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-error p {
    color: #ff4444;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-error p::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.form-success {
    background: rgba(0, 136, 60, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    display: none;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.form-success p {
    color: var(--text);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Radio Group Styles */

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(0, 136, 60, 0.1);
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-label input[type="radio"]:checked+span {
    color: var(--primary);
    font-weight: 600;
}

.radio-label span {
    color: var(--text);
    transition: color 0.3s ease;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: rgba(0, 136, 60, 0.15);
    box-shadow: 0 0 0 2px var(--green-glow);
}

/* Checkbox Label Styles */

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: rgba(0, 136, 60, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--primary);
    background: rgba(0, 136, 60, 0.15);
}

.checkbox-label input[type="checkbox"]:checked+span {
    color: var(--text);
}

/* Checkbox obrigatório - destaque visual */

.checkbox-label.required-checkbox {
    border: 1px solid var(--glass-border);
    background: var(--glass);
    position: relative;
}

.checkbox-label.required-checkbox::before {
    content: '*';
    position: absolute;
    top: -8px;
    left: 8px;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--dark-card);
    padding: 0 4px;
}

.checkbox-label.required-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label.required-checkbox:hover {
    border-color: var(--primary-light);
    background: rgba(0, 136, 60, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 136, 60, 0.1);
}

.checkbox-label.required-checkbox:has(input[type="checkbox"]:checked) {
    border-color: var(--primary);
    background: rgba(0, 136, 60, 0.2);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.checkbox-label.required-checkbox span {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label.required-checkbox span strong {
    color: var(--primary);
    font-weight: 600;
}

/* Select Styles */

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--text);
    padding: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--green-glow);
}

/* ===========================================
   MAPA
   =========================================== */

.map-section {
    padding: 0;
    margin-top: 6rem;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-secondary);
}

/* ===========================================
   TIMELINE
   =========================================== */

.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    text-align: right;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.timeline-content {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   CONTEÚDO E GRIDS
   =========================================== */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.content-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text ul {
    list-style: none;
    margin: 2rem 0;
}

.content-text ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.3rem;
}

.content-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-card:nth-child(1) {
    top: 0;
    left: 0;
    width: 70%;
    border-left: 4px solid var(--primary);
}

.visual-card:nth-child(2) {
    bottom: 0;
    right: 0;
    width: 70%;
    border-left: 4px solid var(--secondary);
}

.visual-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   CARDS DE VALORES
   =========================================== */

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

.value-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--green-glow);
}

.value-card>* {
    position: relative;
    z-index: 1;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================================
   STORY SECTION
   =========================================== */

.story-section {
    margin: 4rem 0;
}

.story-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.story-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--secondary);
}

.story-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ===========================================
   FOOTER
   =========================================== */

footer {
    background: var(--dark-light);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(12, 148, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===========================================
   PAGE NAVIGATION
   =========================================== */

.page-nav {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-btn {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 700;
}

.page-btn:hover {
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--green-glow);
}

/* ===========================================
   ANIMAÇÕES
   =========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===========================================
   ESTILOS ESPECÍFICOS PARA PRESITE.HTML
   =========================================== */

body.presite {
    background: #142620;
    color: var(--light-text);
}

body.presite header {
    background: var(--light-card);
    padding: 20px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

body.presite .header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.presite .logo {
    height: 50px;
}

body.presite .badges {
    display: flex;
    gap: 10px;
}

body.presite .badge {
    height: 40px;
}

body.presite .hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 5% 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.presite .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

body.presite .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

body.presite .hero h1 {
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

body.presite .hero .subtitle {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 300;
    opacity: 0.95;
}

body.presite .hero .description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.presite .options-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}

body.presite .section-intro {
    text-align: center;
    margin-bottom: 60px;
}

body.presite .section-intro h2 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

body.presite .section-intro p {
    font-size: 1.2em;
    color: var(--light-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

body.presite .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

body.presite .option-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
}

body.presite .option-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

body.presite .card-header {
    padding: 50px 40px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

body.presite .card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

body.presite .card-golpe .card-header {
    background: var(--red-gradient);
}

body.presite .card-golpe:hover {
    border-color: #DC143C;
}

body.presite .card-franquia .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #165430 100%);
}

body.presite .card-franquia:hover {
    border-color: #00b350;
}

body.presite .card-credito .card-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff9d5c 100%);
}

body.presite .card-credito:hover {
    border-color: var(--secondary);
}

body.presite .card-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

body.presite .card-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

body.presite .card-header h3 {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-align: center;
}

body.presite .card-header .tagline {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
    text-align: center;
}

body.presite .card-body {
    padding: 40px;
}

body.presite .card-body p {
    font-size: 1.05em;
    color: var(--light-text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

body.presite .card-features {
    list-style: none;
    margin-bottom: 30px;
}

body.presite .card-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1em;
    color: var(--light-text-secondary);
}

body.presite .card-features li:last-child {
    border-bottom: none;
}

body.presite .card-features li::before {
    display: none;
}

body.presite .card-cta {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.presite .card-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

body.presite .card-cta:hover::before {
    width: 300px;
    height: 300px;
}

body.presite .card-cta span {
    position: relative;
    z-index: 1;
}

body.presite .card-golpe .card-cta {
    background: var(--red-gradient);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

body.presite .card-golpe .card-cta:hover {
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.5);
    transform: translateY(-3px);
}

body.presite .card-franquia .card-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00b84d 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 60, 0.3);
}

body.presite .card-franquia .card-cta:hover {
    box-shadow: 0 12px 30px rgba(0, 136, 60, 0.5);
    transform: translateY(-3px);
}

body.presite .card-credito .card-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff9d5c 100%);
    box-shadow: 0 8px 20px rgba(244, 125, 51, 0.3);
}

body.presite .card-credito .card-cta:hover {
    box-shadow: 0 12px 30px rgba(244, 125, 51, 0.5);
    transform: translateY(-3px);
}

body.presite .urgency-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #DC143C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

body.presite .help-section {
    background: #191C23;
    padding: 60px 5%;
    text-align: center;
}

body.presite .help-content {
    max-width: 800px;
    margin: 0 auto;
}

body.presite .help-content h2 {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

body.presite .help-content p {
    font-size: 1.1em;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.8;
}

body.presite .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

body.presite .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    color: #FFFFFF;
    font-weight: 600;
}

body.presite .contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

body.presite footer {
    background: #142620;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

body.presite .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

body.presite .footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

body.presite .footer-info {
    font-size: 0.9em;
    opacity: 0.9;
    line-height: 1.8;
}

/* ===========================================
   RESPONSIVIDADE
   =========================================== */

@media (max-width: 1024px) {
    .hero-container,
    .hero-founder-container {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        height: 400px;
    }
    .founder-image {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .models-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 0;
    }
    .timeline-item {
        grid-template-columns: 1fr;
    }
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
        text-align: left;
    }
    body.presite .options-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        position: relative;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 16, 28, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem 5%;
        gap: 0;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.3s ease;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links li.dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    /* Dropdown no mobile - só aparece quando o menu está aberto */
    .nav-links .dropdown .dropdown-menu {
        display: none !important;
    }
    .nav-links.active .dropdown .dropdown-menu {
        display: block !important;
        position: static;
        margin-top: 0;
        margin-left: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-left: 2px solid var(--primary);
        padding: 0.5rem 0;
        box-shadow: none;
        min-width: auto;
    }
    .nav-links.active .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .nav-links.active .dropdown-menu a:hover {
        padding-left: 2rem;
        background: rgba(0, 136, 60, 0.1);
    }
    .nav-links a {
        display: block;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0.3rem 0;
    }
    .nav-links a:hover {
        background: rgba(12, 148, 68, 0.1);
        padding-left: 1.5rem;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links .nav-cta {
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0.3rem 0;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(12, 148, 68, 0.3);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .nav-links .nav-cta::after {
        display: none;
    }
    .nav-links .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(12, 148, 68, 0.4);
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    .mobile-menu-btn:hover {
        opacity: 0.8;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Ajuste para telas muito pequenas */
    @media (max-width: 360px) {
        .nav-links .nav-cta {
            font-size: 0.85rem;
            padding: 1rem 0.8rem;
        }
    }
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.story-section h2 {
    font-size: 2rem;
}

.content-text h2 {
    font-size: 2rem;
}

.features-grid,
.products-grid {
    grid-template-columns: 1fr;
}

.footer-container {
    gap: 2.5rem;
}

.footer-links-wrapper {
    gap: 2rem;
}

.page-nav {
    bottom: 1rem;
    right: 1rem;
}

body.presite .hero h1 {
    font-size: 2.2em;
}

body.presite .hero .subtitle {
    font-size: 1.2em;
}

body.presite .section-intro h2 {
    font-size: 1.8em;
}

body.presite .card-header {
    padding: 40px 30px 30px;
}

body.presite .card-header h3 {
    font-size: 1.6em;
}

body.presite .card-body {
    padding: 30px;
}

body.presite .contact-info {
    flex-direction: column;
    gap: 20px;
}

body.presite .badges {
    display: none;
}

/* ===========================================
   UTILITÁRIOS
   =========================================== */

.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Logo no Header */

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Logo no Footer */

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1);
}

/* Ajuste para quando o navbar rolar */

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF740C, #FF9000);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
    color: white;
    /* ADICIONE ESTA LINHA */
}

.feature-icon i {
    color: white;
    /* Garante que os ícones sejam brancos */
}

/* ===========================================
   VIDEO SECTION
   =========================================== */

.video-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--green-glow) 0%, transparent 60%), radial-gradient(circle at 70% 80%, var(--orange-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-content {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--green-glow);
}

.video-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text);
}

.highlight-green {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 136, 60, 0.3), rgba(244, 125, 51, 0.3));
    transition: opacity 0.4s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px var(--green-glow);
    z-index: 2;
}

.play-button svg {
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 25px 80px var(--green-glow);
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player iframe {
    width: 100%;
    height: 100%;
}

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

.video-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.video-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--green-glow);
}

.stat-icon {
    font-size: 2.5rem;
    filter: grayscale(100%) brightness(2);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF740C !important;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stat-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsividade */

@media (max-width: 768px) {
    .video-content {
        padding: 2rem;
    }
    .video-header h2 {
        font-size: 1.8rem;
    }
    .play-button {
        width: 70px;
        height: 70px;
    }
    .play-button svg {
        width: 32px;
        height: 32px;
    }
    .video-stats {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   ABOUT SECTION
   =========================================== */

.about-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, var(--green-glow) 0%, transparent 60%);
    opacity: 0.2;
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    position: relative;
}

.about-text {
    position: relative;
}

.about-text .section-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.about-text .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--green-glow);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--green-glow);
}

.about-feature-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-visual {
    position: relative;
    height: 600px;
}

.lottie-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px var(--green-glow);
    animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.floating-stats {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-stat-card {
    position: absolute;
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float-card 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 25px 70px var(--green-glow);
}

@keyframes float-card {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-stat-card:nth-child(1) {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-stat-card:nth-child(2) {
    top: 45%;
    right: 0;
    animation-delay: 1s;
}

.floating-stat-card:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.floating-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px var(--green-glow);
}

.floating-stat-content {
    display: flex;
    flex-direction: column;
}

.floating-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF740C, #FF9000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.floating-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsividade */

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-visual {
        height: 500px;
    }
    .lottie-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-text .section-title {
        font-size: 2.5rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-visual {
        height: 400px;
    }
    .lottie-container {
        width: 300px;
        height: 300px;
    }
    .floating-stat-card {
        padding: 1rem;
    }
    .floating-stat-number {
        font-size: 1.4rem;
    }
}

/* Seção História do André */

.andre-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.andre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 146, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.andre-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.andre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.andre-text {
    padding-right: 20px;
}

.andre-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.andre-title {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
}

.andre-title .highlight {
    color: #00923f;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.andre-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00923f 0%, transparent 100%);
    animation: underlineGrow 1.5s ease-out forwards;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.andre-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00923f 0%, #00b84f 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 146, 63, 0.3);
}

.andre-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.andre-btn:hover::before {
    left: 100%;
}

.andre-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 146, 63, 0.5);
}

.andre-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-text {
    letter-spacing: 0.05em;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.andre-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    transform: scale(1.02) translateY(-10px);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 63, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Efeito de brilho decorativo */

.andre-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 146, 63, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsivo */

@media (max-width: 968px) {
    .andre-section {
        padding: 60px 0;
    }
    .andre-section .container {
        padding: 0 30px;
    }
    .andre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .andre-text {
        padding-right: 0;
        text-align: center;
    }
    .andre-title {
        font-size: 32px;
    }
    .andre-subtitle {
        font-size: 12px;
    }
    .andre-btn {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .andre-section .container {
        padding: 0 20px;
    }
    .andre-title {
        font-size: 24px;
    }
    .andre-subtitle {
        font-size: 11px;
        letter-spacing: 0.15em;
    }
    .andre-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    .btn-text {
        font-size: 14px;
    }
}

/* Seção Newsletter */

.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 146, 63, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(0, 146, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-text .highlight {
    color: #00923f;
    display: inline-block;
    position: relative;
}

.newsletter-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.newsletter-form-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 146, 63, 0.3);
    box-shadow: 0 20px 60px rgba(0, 146, 63, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #00923f;
    box-shadow: 0 0 0 3px rgba(0, 146, 63, 0.1);
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 0;
    flex-shrink: 0;
    display: block;
}

.checkbox-label:hover .checkbox-custom {
    border-color: rgba(0, 146, 63, 0.5);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
    background: #00923f;
    border-color: #00923f;
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.newsletter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00923f 0%, #00b84f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 146, 63, 0.3);
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 146, 63, 0.5);
}

.newsletter-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 20px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.newsletter-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-animation dotlottie-player {
    filter: drop-shadow(0 10px 30px rgba(0, 146, 63, 0.3));
}

/* Mensagens de sucesso e erro */

.form-success,
.form-error {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    animation: slideIn 0.5s ease;
}

.form-success {
    background: rgba(0, 146, 63, 0.1);
    border: 1px solid rgba(0, 146, 63, 0.3);
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #00923f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success p,
.form-error p {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

/* Responsivo */

@media (max-width: 968px) {
    .newsletter-section {
        padding: 60px 0;
    }
    .newsletter-section .container {
        padding: 0 30px;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .newsletter-text {
        text-align: center;
    }
    .newsletter-text h2 {
        font-size: 28px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    .newsletter-animation {
        order: -1;
    }
    .newsletter-animation dotlottie-player {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .newsletter-section .container {
        padding: 0 20px;
    }
    .newsletter-text h2 {
        font-size: 24px;
    }
    .newsletter-subtitle {
        font-size: 14px;
    }
    .newsletter-form-wrapper {
        padding: 25px;
    }
    .newsletter-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    .checkbox-text {
        font-size: 12px;
    }
}

/* Seção Newsletter */

.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 146, 63, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(0, 146, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-text .highlight {
    color: #00923f;
    display: inline-block;
    position: relative;
}

.newsletter-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
}

.newsletter-form-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 146, 63, 0.3);
    box-shadow: 0 20px 60px rgba(0, 146, 63, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #00923f;
    box-shadow: 0 0 0 3px rgba(0, 146, 63, 0.1);
    transform: translateY(-2px);
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: #00923f;
    border-color: #00923f;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.checkbox-text {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.newsletter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 40px;
    background: linear-gradient(135deg, #00923f 0%, #00b84f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 146, 63, 0.3);
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 146, 63, 0.5);
}

.newsletter-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 22px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mensagens de sucesso e erro */

.form-success,
.form-error {
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    animation: slideIn 0.5s ease;
}

.form-success {
    background: rgba(0, 146, 63, 0.1);
    border: 1px solid rgba(0, 146, 63, 0.3);
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #00923f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #ffffff;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success p,
.form-error p {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

/* Responsivo */

@media (max-width: 968px) {
    .newsletter-section {
        padding: 60px 0;
    }
    .newsletter-section .container {
        padding: 0 30px;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .newsletter-text {
        text-align: center;
    }
    .newsletter-text h2 {
        font-size: 32px;
    }
    .newsletter-subtitle {
        font-size: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .newsletter-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .newsletter-section .container {
        padding: 0 20px;
    }
    .newsletter-text h2 {
        font-size: 26px;
    }
    .newsletter-subtitle {
        font-size: 14px;
    }
    .newsletter-form-wrapper {
        padding: 25px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 16px 20px;
        font-size: 14px;
    }
    .newsletter-btn {
        padding: 18px 30px;
        font-size: 16px;
    }
    .checkbox-text {
        font-size: 12px;
    }
}

/* ====
   TIMELINE MELHORADA
   ==== */

.timeline {
    position: relative;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Linha central */

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 10%, var(--secondary) 50%, var(--primary) 90%, transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--green-glow);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    opacity: 0;
    animation: fadeInTimeline 0.8s ease forwards;
}

@keyframes fadeInTimeline {
    to {
        opacity: 1;
    }
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Anos ímpares - conteúdo à direita */

.timeline-item:nth-child(odd) .timeline-year {
    grid-column: 1;
    text-align: right;
    padding-right: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 2;
}

/* Anos pares - conteúdo à esquerda */

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 3;
    text-align: left;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
}

/* Ano */

.timeline-year {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--green-glow));
}

/* Ponto central */

.timeline-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-dot::before {
    content: '';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--dark), 0 0 30px var(--green-glow);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot::before {
    transform: scale(1.5);
    box-shadow: 0 0 0 12px var(--dark), 0 0 50px var(--green-glow);
}

/* Conteúdo */

.timeline-content {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Seta apontando para o centro */

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid var(--dark-card);
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.3));
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--dark-card);
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.3));
}

/* Borda colorida no topo */

.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content::after {
    transform: scaleX(1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 80px var(--green-glow);
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timeline-content h3::before {
    content: '●';
    font-size: 0.6em;
    color: var(--primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsivo */

@media (max-width: 1024px) {
    .timeline::before {
        left: 40px;
    }
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
        text-align: center;
        padding: 0;
        font-size: 2.5rem;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        display: none;
    }
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
        border-right: 20px solid var(--dark-card);
        border-left: none;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-left: 50px;
    }
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
        text-align: left;
        font-size: 2rem;
        writing-mode: horizontal-tb;
        margin-bottom: 1rem;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
    }
    .timeline-content::before {
        display: none;
    }
}

/* ====
   MISSION SECTION
   ==== */

.mission-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, var(--green-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-label {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.mission-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.highlight-green {
    color: var(--primary);
    display: inline-block;
}

.mission-description {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.mission-description p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-description p:last-child {
    margin-bottom: 0;
}

/* Video Wrapper */

.mission-video-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.video-container-mission {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.video-container-mission:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 40px 100px var(--green-glow);
}

.video-container-mission iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animação */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */

@media (max-width: 768px) {
    .mission-section {
        padding: 5rem 5%;
    }
    .mission-title {
        font-size: 2rem;
    }
    .mission-description p {
        font-size: 0.95rem;
    }
    .mission-header {
        margin-bottom: 3rem;
    }
    .video-container-mission {
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 4rem 5%;
    }
    .mission-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }
    .mission-title {
        font-size: 1.6rem;
    }
    .mission-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon i {
    color: #00b350;
    transform: scale(1.1);
}

/* Remove o filtro da imagem já que agora é ícone */

.product-icon img {
    display: none;
}

/* ====
   DEDICATION SECTION
   ==== */

.dedication-section {
    background: var(--dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.dedication-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, var(--green-glow) 0%, transparent 60%);
    opacity: 0.2;
    pointer-events: none;
}

.dedication-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Conteúdo */

.dedication-content {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.2s;
}

.dedication-label {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.dedication-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.dedication-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dedication-text p:last-child {
    margin-bottom: 2.5rem;
}

/* CTA Button */

.dedication-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #00b350 100%);
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dedication-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;
}

.dedication-cta:hover::before {
    left: 100%;
}

.dedication-cta:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px var(--green-glow);
}

.cta-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.dedication-cta:hover .cta-icon {
    transform: rotateY(180deg);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.dedication-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Imagem */

.dedication-image-wrapper {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.4s;
}

.dedication-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    background: var(--dark-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}

.dedication-image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 40px 100px var(--green-glow);
}

.dedication-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    display: none;
}

/* ====
   PRODUCTS SECTION
   ==== */

.products-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0a0f1a 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--green-glow) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 146, 63, 0.1) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */

.products-header {
    text-align: center;
    margin-bottom: 5rem;
}

.products-label {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.products-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.products-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

/* Grid de Produtos */

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

/* Grid específico para página de empréstimo */

#produtos .products-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 4rem auto;
}

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

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

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.product-card2 {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* Permite que o card encolha corretamente */
}

.product-card2 .product-header {
    padding: 2.5rem 2rem 1.5rem;
    flex-shrink: 0;
}

.product-card2 .product-body {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card2 .product-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--green-glow);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 146, 63, 0.1) 0%, rgba(0, 146, 63, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, rgba(0, 146, 63, 0.2) 0%, rgba(0, 146, 63, 0.1) 100%);
}

.product-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(130deg) brightness(95%) contrast(101%);
}

.product-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.product-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-glow {
    opacity: 1;
}

/* Animações */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsivo */

@media (max-width: 1024px) {
    .dedication-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .dedication-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dedication-section,
    .products-section {
        padding: 6rem 5%;
    }
    .dedication-title,
    .products-title {
        font-size: 2rem;
    }
    .dedication-text p,
    .products-subtitle {
        font-size: 0.95rem;
    }
    .products-header {
        margin-bottom: 3rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .dedication-section,
    .products-section {
        padding: 5rem 5%;
    }
    .dedication-title,
    .products-title {
        font-size: 1.6rem;
    }
    .dedication-label,
    .products-label {
        font-size: 0.75rem;
    }
    .dedication-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-card {
        padding: 2.5rem 1.5rem;
    }
    .product-title {
        font-size: 1rem;
    }
}

/* ===========================================
   SEÇÃO BANCOS CONVENIADOS
   =========================================== */

.bancos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: center;
    justify-items: center;
    place-items: center;
}

.banco-logo {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.banco-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.banco-logo:hover::before {
    transform: scaleX(1);
}

.banco-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 136, 60, 0.2);
}

.banco-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.banco-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .bancos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .banco-logo {
        padding: 1.5rem;
        min-height: 100px;
    }
    .banco-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .bancos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .banco-logo {
        padding: 1rem;
        min-height: 80px;
    }
    .banco-logo img {
        max-height: 50px;
    }
}

/* ===========================================
   SEÇÃO CREDFÁCIL NA MÍDIA
   =========================================== */

.midia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: center;
    justify-items: center;
    place-items: center;
}

.midia-logo {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 140px;
    text-decoration: none;
    width: 100%;
    max-width: 200px;
}

.midia-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.midia-logo:hover::before {
    transform: scaleX(1);
}

.midia-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 136, 60, 0.2);
}

.midia-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.midia-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .midia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .midia-logo {
        padding: 1.5rem;
        height: 120px;
    }
    .midia-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .midia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .midia-logo {
        padding: 1rem;
        height: 100px;
    }
    .midia-logo img {
        max-height: 50px;
    }
}

/* ===========================================
   SEÇÃO VÍDEO E LIVRO
   =========================================== */

.livro-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.livro-video-player {
    width: 100%;
}

.video-wrapper-livro {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper-livro iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.livro-video-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.livro-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.livro-image:hover {
    animation: float 3s ease-in-out infinite, scale-hover 0.3s ease forwards;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scale-hover {
    to {
        transform: translateY(-20px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .livro-video-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .livro-video-player {
        order: 1;
    }
    .livro-video-content {
        order: 2;
    }
}

/* ===========================================
   SEÇÃO CITAÇÃO DO CEO
   =========================================== */

.ceo-quote-section {
    padding: 8rem 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.quote-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ceo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-image-frame {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--green-glow);
}

.ceo-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.quote-content {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ceo-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    background: linear-gradient(135deg, #1C7641, #0C9444);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--green-glow);
}

.ceo-story-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--green-glow);
}

.btn-arrow {
    font-size: 1.3rem;
}

/* Elementos decorativos */

.quote-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: 0;
}

.quote-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
    background: var(--green-glow);
}

.quote-decoration-2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -100px;
    background: var(--orange-glow);
}

/* Responsivo */

@media (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ceo-image {
        width: 260px;
        height: 260px;
    }
    .quote-content {
        margin-top: 3rem;
        padding: 2.5rem;
    }
    .quote-author {
        flex-direction: column;
    }
    .author-line {
        display: none;
    }
}

/* ===========================================
   ESTILOS INLINE MOVIDOS DOS HTML
   =========================================== */

/* Estilos da iframe em emprestimo.html */

.iframe-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark-bg);
}

.main-iframe {
    width: 100%;
    height: 100vh;
    border: none;
    overflow-x: hidden !important;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: block;
}

.main-iframe.loaded {
    opacity: 1;
}

/* Todos os Produtos (versao local sem iframe) */
.todos-produtos-section {
    padding-top: 3.5rem;
}

.todos-produtos-wrap {
    width: min(98vw, 1700px);
    max-width: none;
}

.todos-produtos-controls {
    max-width: 980px;
    margin: 0 auto 1.5rem;
}

.todos-produtos-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 1rem;
    width: fit-content;
}

.todos-tab {
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    padding: 0.9rem 1.6rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.todos-tab i {
    margin-right: 0.45rem;
}

.todos-tab.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text);
    box-shadow: inset 0 0 0 2px rgba(102, 255, 153, 0.6);
}

.todos-produtos-search {
    position: relative;
    width: 100%;
}

.todos-produtos-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e949c;
    font-size: 0.95rem;
}

.todos-produtos-search input {
    width: 100%;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(20, 22, 28, 0.75);
    color: var(--text);
    padding: 0 14px 0 38px;
    font-size: 1.2rem;
    outline: none;
}

.todos-produtos-search input::placeholder {
    color: #7f858d;
}

.todos-produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 1rem;
}

.todos-produto-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    border-radius: 16px;
    padding: 1.4rem;
    background: linear-gradient(145deg, #026f24 0%, #00661f 60%, #075f24 100%);
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(111, 255, 168, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.todos-produto-card::before,
.todos-produto-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.todos-produto-card::before {
    width: 170px;
    height: 170px;
    right: -35px;
    top: -30px;
    background: radial-gradient(circle, rgba(195, 235, 203, 0.5) 0%, rgba(195, 235, 203, 0.24) 45%, rgba(195, 235, 203, 0.1) 70%, transparent 71%);
}

.todos-produto-card::after {
    width: 58px;
    height: 58px;
    right: 28px;
    top: 26px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 0 0 24px rgba(210, 241, 216, 0.2), 0 0 0 50px rgba(210, 241, 216, 0.12);
}

.todos-produto-card .produto-sub {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    font-weight: 700;
    opacity: 0.98;
}

.todos-produto-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 0.45rem;
    font-size: 2.1rem;
    line-height: 1.12;
}

.todos-produto-card .produto-money {
    position: absolute;
    right: 57px;
    top: 55px;
    transform: translate(50%, -50%);
    z-index: 3;
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.todos-produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
    .todos-produtos-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 700px) {
    .todos-tab {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    .todos-produtos-search input {
        font-size: 1rem;
    }
    .todos-produtos-grid {
        grid-template-columns: 1fr;
    }
    .todos-produto-card h3 {
        font-size: 1.8rem;
    }
}

/* Loader do iframe */

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.iframe-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.iframe-loader-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.iframe-loader-content .loading-glass-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.iframe-loader-content .loading-spinner {
    margin: 0 auto 1.5rem;
}

.iframe-loader-content .loading-spinner::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(0, 136, 60, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.iframe-loader-content .loading-text {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .main-iframe {
        height: 210vh;
    }
    .iframe-loader-content .loading-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Estilos inline do hero-founder span */

.margin-left-05rem {
    margin-left: 0.5rem;
}

/* Estilos inline dos botões */

.btn-inline {
    width: 100%;
    justify-content: center;
}

/* Estilos inline das seções */

.section-bg-dark {
    background: var(--dark-light);
}

/* Estilos inline da timeline */

.timeline-title-center {
    text-align: center;
    font-size: 3rem;
    margin: 6rem 0 3rem;
}

.timeline-text-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos inline do quote box */

.quote-box-margin {
    margin: 4rem 0;
}

/* Estilos inline da citação de valores */

.values-title-center {
    text-align: center;
    margin: 6rem 0 3rem;
}

.values-subtitle-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos inline da home founder section */

.hero-cta-center {
    justify-content: center;
}

/* Estilos inline para warnings */

.warning-box {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilos inline para espaçamentos de conteúdo */

.content-text-center {
    text-align: center;
    margin: 6rem 0 3rem;
}

.content-text-center p {
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   ESTILOS PÁGINA INDEX (PRESITE)
   =========================================== */

/* Hero Section Presite */

.presite-hero {
    padding: 12rem 5% 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 31, 39, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.presite-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.presite-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.presite-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 136, 60, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.presite-badge i {
    font-size: 1.1rem;
}

.presite-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #b8c5d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presite-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Decorative Elements */

.hero-decorative-box {
    position: absolute;
    border: 2px solid rgba(0, 136, 60, 0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.hero-decorative-box.box-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
    background: rgba(0, 136, 60, 0.08);
    border-radius: 50%;
}

.hero-decorative-box.box-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation: float 8s ease-in-out infinite reverse;
    background: rgba(26, 188, 156, 0.08);
    border-radius: 8px;
}

.hero-decorative-box.box-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
    background: rgba(0, 136, 60, 0.12);
    border-radius: 50%;
}

.hero-decorative-box.box-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 12%;
    animation: float 9s ease-in-out infinite reverse;
    background: rgba(26, 188, 156, 0.08);
    border-radius: 12px;
}

.hero-decorative-box.box-5 {
    width: 70px;
    height: 70px;
    bottom: 35%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
    background: rgba(0, 136, 60, 0.1);
    border-radius: 50%;
}

/* Floating elements with pulse */

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 136, 60, 0.15);
    border: 2px solid rgba(0, 136, 60, 0.3);
    z-index: 1;
    pointer-events: none;
}

.floating-element.float-1 {
    top: 20%;
    right: 15%;
    animation: pulse 3s ease-in-out infinite;
}

.floating-element.float-2 {
    bottom: 25%;
    left: 12%;
    animation: pulse 4s ease-in-out infinite reverse;
}

.pulse-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 136, 60, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Highlight Text Animation */

.highlight-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes shimmer {
    0%,
    100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.4);
        transform: scale(1.02);
    }
}

/* Typing effect */

.typing-text {
    border-right: 2px solid;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    50% {
        border-color: transparent;
    }
    51%,
    100% {
        border-color: inherit;
    }
}

/* Hero Stats */

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premiações Section */

.premiacoes-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premiacoes-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premiacoes-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.premiacao-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(0, 136, 60, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premiacao-badge:hover {
    background: rgba(0, 136, 60, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 60, 0.3);
}

.premiacao-badge i {
    font-size: 1.3rem;
    color: #FFD700;
}

/* Investment Highlight */

.investment-highlight {
    color: var(--primary);
    font-size: 1.15em;
    font-weight: 700;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    background: rgba(0, 136, 60, 0.15);
    border: 1px solid rgba(0, 136, 60, 0.3);
    box-shadow: 0 2px 8px rgba(0, 136, 60, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Options Section */

.options-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.option-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 136, 60, 0.2);
    border-color: var(--primary);
}

/* Urgency Badge */

.urgency-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.urgency-badge i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(255, 68, 68, 0.6);
    }
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 136, 60, 0.3);
}

/* Card Header */

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-size: 2rem;
    color: white;
}

.card-icon svg {
    fill: currentColor;
    width: 40px;
    height: 40px;
}

.card-golpe .card-icon {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
}

.card-franquia .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.card-credito .card-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tagline {
    color: #fff;
    font-size: 0.95rem;
}

.emergency-tagline {
    color: #ff4444;
    font-weight: 600;
}

/* Card Body */

.card-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.card-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* CTA Button */

.card-cta {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 60, 0.4);
}

.emergency-cta {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.3);
}

.emergency-cta:hover {
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.5);
    color: white;
}

/* Emergency Alert Box */

.emergency-alert {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.emergency-alert strong {
    color: #ff4444;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.emergency-info {
    background: rgba(255, 68, 68, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.emergency-info p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    margin: 0.5rem 0;
}

.emergency-info i {
    color: #ff4444;
    width: 20px;
}

/* Help Section */

.help-section {
    padding: 6rem 5%;
    background: var(--dark-light);
    text-align: center;
}

.help-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-content>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 136, 60, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item span a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item span a:hover {
    color: var(--primary);
}

/* Responsive */

@media (max-width: 768px) {
    .presite-hero {
        padding: 8rem 5% 4rem;
    }
    .presite-title {
        font-size: 2.2rem;
    }
    .presite-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 2rem;
        margin: 2rem 0 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .hero-decorative-box,
    .floating-element {
        display: none;
    }
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .card-header h3 {
        font-size: 1.5rem;
    }
    .premiacoes-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .premiacoes-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .premiacoes-badges {
        flex-direction: column;
        align-items: center;
    }
    .premiacao-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .investment-highlight {
        font-size: 1em;
        padding: 0.25rem 0.6rem;
    }
}

/* ===========================================
   ESTILOS PÁGINA GOLPE
   =========================================== */

/* Hero Section Golpe */

.golpe-page {
    background: #f5f5f5;
}

.golpe-hero {
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 12rem 5% 8rem;
    text-align: center;
    overflow: hidden;
}

.golpe-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.hero-decorative-element.pulse-1 {
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero-decorative-element.pulse-2 {
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.golpe-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.golpe-alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.golpe-alert-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.4);
    animation: shake 0.5s ease-in-out infinite alternate;
}

.golpe-alert-icon svg {
    width: 70px;
    height: 70px;
    fill: white;
}

.golpe-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-red {
    background: linear-gradient(135deg, #ff8c00 0%, #ffb694 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.golpe-subtitle {
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.golpe-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #F47D33;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(244, 125, 51, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(244, 125, 51, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(244, 125, 51, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes shake {
    0% {
        transform: rotate(-3deg);
    }
    100% {
        transform: rotate(3deg);
    }
}

.golpe-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 125, 51, 0.6);
    background: #ff8c42;
}

/* Identification Section */

.golpe-identification {
    background: white;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: -60px auto 0;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.golpe-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.golpe-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.golpe-section-title2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ad1919;
}

.golpe-section-intro {
    font-size: 1.2rem;
    color: #c7c7c7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.golpe-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.golpe-checklist-item {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #F47D33;
    transition: all 0.3s ease;
}

.golpe-checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 125, 51, 0.2);
}

.checklist-icon {
    width: 60px;
    height: 60px;
    background: #F47D33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.golpe-checklist-item h3 {
    font-size: 1.4rem;
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.golpe-checklist-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.golpe-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.golpe-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #00883C;
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 136, 60, 0.3);
    transition: all 0.3s ease;
}

.golpe-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 136, 60, 0.4);
    background: var(--primary-light);
}

/* Stats Section */

.golpe-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 5%;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.golpe-stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.golpe-stat-item .stat-number {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.golpe-stat-item .stat-label {
    font-size: 1.2em;
    opacity: 0.95;
    font-weight: 400;
}

/* Process Section */

.golpe-process {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F47D33 0%, #ff6b1a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(244, 125, 51, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #00883C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Features Section */

.golpe-features {
    padding: 6rem 5%;
    background: #e66f07;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F47D33 0%, #ff6b1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #00883C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA Section */

.golpe-final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 5%;
    text-align: center;
    color: white;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.urgency-note {
    background: rgba(244, 125, 51, 0.2);
    border-left: 4px solid #F47D33;
    padding: 1.5rem;
    margin: 2.5rem auto 0;
    max-width: 600px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-note i {
    font-size: 1.5rem;
    color: #F47D33;
}

.urgency-note strong {
    color: #F47D33;
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive */

@media (max-width: 768px) {
    .golpe-hero {
        padding: 8rem 5% 5rem;
    }
    .golpe-title {
        font-size: 2.2rem;
    }
    .golpe-subtitle {
        font-size: 1.1rem;
    }
    .golpe-cta-primary {
        padding: 1.2rem 2rem;
        font-size: 1.1em;
    }
    .golpe-identification {
        padding: 4rem 5%;
        margin: -40px auto 0;
        border-radius: 20px;
    }
    .golpe-section-title {
        font-size: 2rem;
    }
    .golpe-checklist {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .golpe-stats {
        padding: 4rem 5%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .golpe-stat-item .stat-number {
        font-size: 2.5em;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-decorative-element {
        display: none;
    }
    .final-cta-content h2 {
        font-size: 2rem;
    }
    .final-cta-content p {
        font-size: 1.1rem;
    }
}

/* ===========================================
   LOADING SCREEN
   =========================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 31, 39, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 180px;
    height: auto;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px var(--green-glow));
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loading-spinner {
    margin-top: 2rem;
}

.loading-spinner::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(0, 136, 60, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================================
   ESTILOS PARA FRANQUIA HOME OFFICE
   =========================================== */

/* Hero com imagem - Específico para franquia */

.hero-page:has(.hero-image) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

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

.hero-page .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 16, 28, 0.85), rgba(8, 16, 28, 0.7));
    z-index: 1;
}

.hero-page .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Promo images */

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

.promo-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature images */

.feature-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

/* Benefit images */

.benefit-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.05);
}

/* Testimonials Section */

.testimonials-section {
    padding: 6rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-video-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper-testimonial {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.video-wrapper-testimonial iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h4 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Success Career Section - Vídeos de Franqueados em Carrossel */

.success-career-section {
    padding: 6rem 5%;
}

.videos-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 4rem;
}

.videos-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.success-video-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.success-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper-success {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.video-wrapper-success iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.success-video-info {
    text-align: center;
}

.success-video-info h4 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.success-video-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Controles do Carrossel */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 136, 60, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px var(--green-glow);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Indicadores (Dots) */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--green-glow);
}

@media (max-width: 968px) {
    .videos-carousel-container {
        padding: 0 3rem;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .videos-carousel-container {
        padding: 0 2.5rem;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .success-video-card {
        padding: 1rem;
    }
}

/* Video Text Section */

.video-text-section {
    padding: 6rem 5%;
}

.video-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.video-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.video-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.video-text-video {
    position: relative;
    width: 100%;
}

.video-wrapper-text {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper-text iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

@media (max-width: 968px) {
    .video-text-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .video-text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .video-text-section {
        padding: 4rem 5%;
    }
    .video-text-content h2 {
        font-size: 1.75rem;
    }
    .video-text-content p {
        font-size: 1rem;
    }
}

/* CTA Icon Flutuante */

.cta-icon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-floating-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--green-glow);
    animation: floatIcon 3s ease-in-out infinite;
    position: relative;
}

.cta-floating-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green-glow);
    opacity: 0.5;
    animation: pulseIcon 2s ease-in-out infinite;
}

.cta-floating-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseIcon {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Hero full image com parallax */

.hero-image-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 500px;
    max-height: 60vh;
    min-height: 400px;
    background: var(--dark);
}

.hero-full-image {
    width: 100%;
    height: 120%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateY(0);
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-image-section {
        height: 350px;
        max-height: 50vh;
        min-height: 300px;
    }
    .hero-full-image {
        height: 130%;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .promo-images {
        grid-template-columns: 1fr;
    }
    .feature-image-wrapper,
    .benefit-image-wrapper {
        height: 150px;
    }
}

/* Animações extras para o loading */

.loading-glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 60, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===========================================
   ESTILOS ESPECÍFICOS PARA FRANQUIA BLACK
   Tema: Preto, Cinza e Dourado
   =========================================== */

/* Variáveis específicas para Black */

.black-page {
    --black-primary: #000000;
    --black-dark: #0A0A0A;
    --black-card: #1A1A1A;
    --black-light: #2A2A2A;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941A;
    --gray-dark: #333333;
    --gray-medium: #4A4A4A;
    --gray-light: #666666;
    background: var(--black-dark);
}

.black-page body {
    background: var(--black-dark);
}

/* Background animado para Black */

.black-page .bg-animated {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
}

.black-page .bg-animated::before {
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* Hero section Black */

.black-page .hero-page {
    background: linear-gradient(135deg, var(--black-dark) 0%, var(--black-card) 100%);
}

.black-page .hero-image::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65)) !important;
    opacity: 1 !important;
}

.black-page .hero-content h1 .highlight {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Sections Black */

.black-page .section {
    background: var(--black-dark);
}

.black-page .section.black-section {
    background: var(--black-card) !important;
}

.black-page .section[style*="background: var(--dark-light)"] {
    background: var(--black-card) !important;
}

.black-page .section:nth-child(even) {
    background: var(--black-card);
}

.black-page .section-header h2 {
    color: var(--text);
}

.black-page .section-header .section-label {
    color: var(--gold);
}

/* Cards de Features Black */

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

.black-feature-card {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-light) 100%);
    border: 2px solid var(--gray-dark);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.black-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.black-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.black-feature-card:hover::before {
    opacity: 1;
}

.black-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.black-feature-card:hover .black-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.black-feature-icon i {
    font-size: 2rem;
    color: var(--black-dark);
}

.black-feature-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

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

/* Formulário Black */

.black-page .contact-form {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
}

.black-page .contact-form h2 {
    color: var(--gold);
}

.black-page .form-group input,
.black-page .form-group select,
.black-page .form-group textarea {
    background: var(--black-dark);
    border: 1px solid var(--gray-dark);
    color: var(--text);
}

.black-page .form-group input:focus,
.black-page .form-group select:focus,
.black-page .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.black-page .form-group.has-error input,
.black-page .form-group.has-error select,
.black-page .form-group.has-error textarea {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

.black-page .form-group.has-error label {
    color: #ff4444;
}

.black-page .form-group.has-error .radio-label,
.black-page .form-group.has-error .checkbox-label {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.black-page .checkbox-label.required-checkbox {
    border: 1px solid var(--glass-border);
    background: var(--glass);
}

.black-page .checkbox-label.required-checkbox::before {
    color: var(--gold);
    background: var(--black-card);
}

.black-page .checkbox-label.required-checkbox:hover {
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.black-page .checkbox-label.required-checkbox:has(input[type="checkbox"]:checked) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.black-page .checkbox-label.required-checkbox span strong {
    color: var(--gold);
}

.black-page .form-error {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
}

.black-page .form-success {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
}

.black-page .form-success .success-icon {
    background: var(--gold);
    color: var(--black-dark);
}

.black-page .btn-submit {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black-dark);
    border: none;
}

.black-page .btn-submit:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* CTA Section Black */

.black-page .cta-section {
    background: linear-gradient(135deg, var(--black-dark) 0%, var(--black-card) 100%);
    border-top: 2px solid var(--gold);
}

.black-page .cta-floating-icon {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.black-page .cta-floating-icon::before {
    background: rgba(212, 175, 55, 0.3);
}

.black-page .btn-white {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black-dark);
    border: none;
}

.black-page .btn-white:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Video Text Section Black */

.black-page .video-text-section {
    background: var(--black-card);
}

.black-page .video-text-content h2 .highlight {
    color: var(--gold);
}

.black-page .btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black-dark);
}

.black-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Testimonials Black */

.black-page .testimonials-section {
    background: var(--black-dark);
}

.black-page .testimonial-video-card {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
}

.black-page .testimonial-video-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

/* Feature Cards padrão na página Black */

.black-page .feature-card {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
}

.black-page .feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.black-page .feature-icon {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black-dark);
}

.black-page .feature-card h3 {
    color: var(--gold);
}

/* Products Section Black */

.black-page .products-section {
    background: var(--black-card);
}

.black-page .section.black-section .products-grid {
    margin-top: 4rem;
}

.black-page .products-header .products-label {
    color: var(--gold);
}

.black-page .products-title .highlight-green {
    color: var(--gold);
}

.black-page .products-title {
    color: var(--text);
}

.black-page .products-subtitle {
    color: var(--text-secondary);
}

.black-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.black-page .product-card {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-light) 100%);
    border: 2px solid var(--gray-dark);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.black-page .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.black-page .product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.black-page .product-card:hover::before {
    opacity: 1;
}

.black-page .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.black-page .product-card:hover::after {
    transform: scaleX(1);
}

.black-page .product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.black-page .product-icon i {
    font-size: 2rem;
    color: var(--black-dark);
}

.black-page .product-card:hover .product-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.black-page .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.black-page .product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.black-page .product-card:hover .product-glow {
    opacity: 1;
}

/* Bancos Section Black */

.black-page .banco-logo {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-light) 100%);
    border: 2px solid var(--gray-dark);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.black-page .banco-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.black-page .banco-logo:hover::before {
    transform: scaleX(1);
}

.black-page .banco-logo:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.black-page .banco-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.black-page .banco-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* CredFácil na Mídia - Black Page */

.black-page .midia-logo {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-light) 100%);
    border: 2px solid var(--gray-dark);
}

.black-page .midia-logo::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.black-page .midia-logo:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.black-page .section-header h2 {
    color: var(--gold);
}

.black-page .section-header .section-label {
    color: var(--gold);
    border-color: var(--gold);
}

.black-page .section-description {
    color: var(--text-light);
}

/* Form Hero Grid Black */

.black-page .form-hero-img {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.black-page .form-hero-img:hover {
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

/* Navbar Black - Efeitos Dourados */

.black-page nav {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.black-page nav.scrolled {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.black-page .nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.black-page .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.black-page .nav-links a::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.black-page .nav-links a.active {
    color: var(--gold);
}

.black-page .nav-links a:hover {
    color: var(--gold-light);
}

.black-page .nav-links .dropdown .dropdown-menu {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.black-page .nav-links .dropdown .dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.black-page .nav-links .dropdown:hover .dropdown-toggle i,
.black-page .nav-links .dropdown.active .dropdown-toggle i {
    color: var(--gold);
}

.black-page .dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: var(--gold) !important;
}

/* Footer Black - Preto e Dourado */

.black-page footer {
    background: var(--black-dark) !important;
    border-top: 1px solid var(--gray-dark);
}

.black-page .footer-container {
    border-color: var(--gray-dark);
}

.black-page .footer-links h4 {
    color: var(--gold) !important;
}

.black-page .footer-links a:hover {
    color: var(--gold) !important;
}

.black-page .social-link {
    background: rgba(212, 175, 55, 0.1);
}

.black-page .social-link:hover {
    background: var(--gold);
    color: var(--black-dark);
}

.black-page .footer-bottom {
    border-top: 1px solid var(--gray-dark);
}

/* Garantir que o texto "Black" na hero esteja em dourado */

.black-page .hero-content h1 .highlight {
    color: var(--gold) !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Responsive */

@media (max-width: 968px) {
    .black-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .black-features-grid {
        grid-template-columns: 1fr;
    }
    .black-feature-card {
        padding: 2rem;
    }
    .black-feature-icon {
        width: 70px;
        height: 70px;
    }
    .black-feature-icon i {
        font-size: 1.5rem;
    }
}

/* ===========================================
   FIM DO ARQUIVO CSS
   =========================================== */
