/* ========================================
   FOUR LOOP COMMERCE - STYLESHEET OTIMIZADO
	Autor: Lailson Azevedo
   Tema: Minimalismo Corporativo Escuro
   Cores: #0b0b0b (fundo), #04b404 (accent)
   Versão: 2.0 - Com melhorias UX/UI
   ======================================== */

/* ========== RESET E VARIÁVEIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tema Escuro (Default) */
    --primary-bg: #0b0b0b;
    --primary-text: #ffffff;
    --secondary-text: #c0c0c0;
    --accent: #04b404;
    --accent-dark: #038003;
    --accent-light: #06d406;
    --card-bg: #1a1a1a;
    --border: #2a2a2a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-bg: rgba(11, 11, 11, 0.95);
    --hero-gradient: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    --section-gradient: linear-gradient(135deg, #1a1a1a 0%, #0b0b0b 100%);
    --footer-bg: #000000;
    --glass-bg: rgba(26, 26, 26, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.3);
}

/* Tema Claro */
[data-theme="light"] {
    --primary-bg: #f5f5f7;
    --primary-text: #1d1d1f;
    --secondary-text: #424245;
    --accent: #04b404;
    --accent-dark: #038003;
    --accent-light: #06d406;
    --card-bg: #ffffff;
    --border: #d2d2d7;
    --navbar-bg: rgba(245, 245, 247, 0.95);
    --hero-gradient: linear-gradient(135deg, #f5f5f7 0%, #e5e5e7 100%);
    --section-gradient: linear-gradient(135deg, #e5e5e7 0%, #f5f5f7 100%);
    --footer-bg: #f5f5f7;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== ACESSIBILIDADE ========== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--primary-bg);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduced motion para usuários com preferência */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TIPOGRAFIA ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

/* ========== BOTÕES ========== */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn::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;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(4, 180, 4, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 180, 4, 0.4);
    color: var(--primary-bg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ========== NAVEGAÇÃO ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
}

.navbar-menu a {
    color: var(--secondary-text);
    font-weight: 500;
    transition: var(--transition);
}

.navbar-menu a:hover {
    color: var(--accent);
}

/* ========== THEME SWITCHER ========== */
.theme-switcher {
    display: flex;
    align-items: center;
    margin-left: auto; /* Empurra para a direita antes do botão mobile */
    margin-right: 1rem;
    z-index: 1002;
}

#theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--accent); /* Borda mais visível */
    color: var(--accent); /* Cor inicial verde para destaque */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(4, 180, 4, 0.3);
    position: relative;
}

#theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent);
    color: var(--accent);
}

.sun-icon { display: none; }
.moon-icon { display: block; }

[data-theme="light"] .sun-icon { display: block; }
[data-theme="light"] .moon-icon { display: none; }

/* ========== MENU HAMBÚRGUER MOBILE ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-text);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay do menu mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .theme-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .btn-desktop-only {
        display: none;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid var(--border);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .navbar-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--primary-text);
    }
    
    .navbar-menu a:hover {
        color: var(--accent);
        transform: translateX(10px);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 180, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #074007 0%, #04b404 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent);
    color: var(--primary-bg);
    border-radius: 50%;
    font-size: 0.8rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
}

/* ========== ANIMAÇÕES DE SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px); /* Reduzido para ser menos abrupto */
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delays sequenciais para cards */
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }

/* ========== SEÇÃO PAIN POINTS ========== */
.pain-points {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-text);
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: var(--transition);
}

.problem-card:hover {
    background: var(--card-bg);
    border: 1px solid rgba(4, 180, 4, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(4, 180, 4, 0.15);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.problem-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-text);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--secondary-text);
}

/* ========== SEÇÃO SOLUÇÃO ========== */
.solution {
    padding: 80px 0;
    background: var(--section-gradient);
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item .benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: var(--accent);
    color: var(--primary-bg);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0;
    color: var(--primary-text);
    font-size: 1.1rem;
}

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

/* ========== SEÇÃO FUNCIONALIDADES ========== */
.features {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.feature-card:hover {
    background: var(--card-bg);
    border: 1px solid rgba(4, 180, 4, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(4, 180, 4, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-text);
}

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

/* ========== SEÇÃO SEGMENTOS ========== */
.segments {
    padding: 60px 0;
    background-color: var(--primary-bg);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.segment-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.segment-item i {
    font-size: 1.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 5px rgba(4, 180, 4, 0.3));
}

.segment-item span {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-text);
    line-height: 1.2;
}

.segment-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    background: rgba(4, 180, 4, 0.05);
}

/* Ajuste Mobile para 4 colunas */
@media (max-width: 768px) {
    .segments-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .segment-item {
        padding: 0.75rem 0.25rem;
    }
    
    .segment-item i {
        font-size: 1.2rem;
    }
    
    .segment-item span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .segments-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas muito pequenas para manter legibilidade */
    }
}

/* Ordem Mobile Funcionalidades */
@media (max-width: 768px) {
    .func-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .func-content {
        order: 1 !important;
    }
    
    .func-image {
        order: 2 !important;
    }
}

/* ========== SEÇÃO PREÇOS ========== */
.plans {
    padding: 80px 0;
    background: var(--section-gradient);
}

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

.plan-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.plan-featured {
    background: rgba(4, 180, 4, 0.05);
    border: 1px solid rgba(4, 180, 4, 0.3);
    box-shadow: 0 0 40px rgba(4, 180, 4, 0.2);
    transform: scale(1.05);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
}

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

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.value {
    font-size: 2.5rem;
    color: var(--accent);
}

.period {
    color: var(--secondary-text);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--secondary-text);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Plans */
@media (max-width: 768px) {
    .plan-featured {
        transform: scale(1);
    }
    
    .plan-featured:hover {
        transform: scale(1) translateY(-5px);
    }
}

/* ========== SEÇÃO SEGURANÇA ========== */
.security {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

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

.security-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
}

.security-item:hover {
    background: var(--card-bg);
    border: 1px solid rgba(4, 180, 4, 0.3);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.security-item h3 {
    color: var(--primary-text);
}

.security-item p {
    color: var(--secondary-text);
}

/* ========== SEÇÃO FAQ ========== */
.faq {
    padding: 80px 0;
    background: var(--section-gradient);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-accordion {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: var(--accent);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question-btn .faq-question {
    color: var(--primary-text);
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question-btn:hover .faq-question {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--primary-bg);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-accordion.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-accordion.active .faq-answer-wrapper {
    max-height: 500px;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== SEÇÃO CTA FINAL ========== */
section.final-cta {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #074007 0%, #04b404 100%) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="light"] .final-cta {
    background: linear-gradient(135deg, #04b404 0%, #074007 100%);
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-cta {
    background: #ffffff !important;
    color: #074007 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    font-weight: 700;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.final-cta .btn-cta:hover {
    background: #f0f0f0 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #04b404 !important;
}

.cta-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.final-cta .btn-cta {
    background-color: var(--primary-bg);
    color: var(--accent);
}

.final-cta .btn-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--accent);
}

/* ========== RODAPÉ PROFISSIONAL ========== */
.footer {
    background-color: var(--footer-bg);
    color: var(--secondary-text);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.footer-section h4 {
    color: var(--primary-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item strong {
    color: var(--accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.link-icon {
    font-size: 1rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
    color: var(--primary-text);
}

.social-icon:hover {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer-contact {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-text {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.btn-contact {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-contact:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-address p strong {
    color: var(--primary-text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: rgba(176, 176, 176, 0.6);
    font-size: 0.85rem;
    gap: 2rem;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-right a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-bottom-right a:hover {
    color: var(--accent);
}

.separator {
    color: var(--border);
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--primary-bg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ========== RESPONSIVIDADE RODAPÉ ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ========== MELHORIAS MOBILE ESPECÍFICAS ========== */
@media (max-width: 768px) {
    .btn,
    .navbar-menu a,
    .faq-question-btn {
        min-height: 44px;
    }
    
    body {
        line-height: 1.7;
    }
    
    .pain-points,
    .solution,
    .features,
    .plans,
    .security,
    .faq,
    .final-cta {
        padding: 60px 0;
    }
}
