/* --- DICIONÁRIO DE TEMAS (Dark & Light) --- */
:root {
    /* Modo Escuro (Padrão) */
    --bg-color: #021221;
    --text-main: #F5F5F5;
    --text-muted: #cccccc;
    --accent-cyan: #00d4ff;
    --accent-orange: #f2994a;

    --navbar-bg: rgba(2, 18, 33, 0.05);

    --card-bg: rgba(245, 245, 245, 0.05);
    --card-border: rgba(245, 245, 245, 0.1);
    --cta-bg: linear-gradient(135deg, rgba(7, 65, 107, 0.6), rgba(0, 212, 255, 0.1));
    --wave-opacity: 0.25;
    --menu-invert: invert(1);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="light"] {
    /* Modo Claro */
    --bg-color: #f4f7f9;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --accent-cyan: #008cbd;
    --accent-orange: #d97726;

    --navbar-bg: rgba(244, 247, 249, 0.05);

    --card-bg: rgba(0, 0, 0, 0.05);
    --card-border: rgba(0, 0, 0, 0.08);
    --cta-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 140, 189, 0.1));
    --wave-opacity: 0.15;
    --menu-invert: invert(0);
}

/* --- ESTILOS GERAIS --- */
html,
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    width: 100%;
    max-width: 100%;
    /* Trava o vazamento lateral */
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* =========================================
   NAVBAR CUSTOMIZADA (Floating Glass Pill)
   ========================================= */
.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

    /* Transformando em uma pílula flutuante */
    top: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .navbar {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    color: var(--accent-cyan) !important;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
}

/* Links com animação de sublinhado elegante */
.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    position: relative;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-cyan);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 70%;
    /* O tracinho cresce do centro para as bordas */
}

.nav-link:hover {
    color: var(--accent-cyan) !important;
}

/* Ajustes Menu Hambúrguer */
.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: var(--menu-invert);
    transition: filter 0.4s ease;
}

/* Botão de Troca de Tema */
.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--accent-orange);
    transform: rotate(15deg);
}

/* Botões Customizados */
.btn-cyan {
    background-color: var(--accent-cyan);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 140, 189, 0.4);
}

.btn-orange-outline {
    background-color: transparent;
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    padding: 10px 26px;
    transition: all 0.3s ease;
}

.btn-orange-outline:hover {
    background-color: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* ONDAS DE FUNDO (NFC WAVES GLOBAIS) */
#nfc-waves-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: var(--wave-opacity);
    transition: opacity 0.4s ease;
}

nav,
section,
footer {
    position: relative;
    z-index: 1;
}

.nfc-wave-circle {
    stroke-opacity: 1;
}

/* =========================================
   HERO SECTION E ATUALIZAÇÕES PREMIUM
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Novo destaque do título em Gradiente */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

/* Badge de Topo (Pílula de Autoridade) */
.hero-badge {
    margin-bottom: 1.5rem;
}

.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .badge-glass {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Micro-copy de Confiança (Abaixo dos botões) */
.hero-trust-indicators {
    border-top: 1px solid var(--card-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-cyan);
    font-size: 0.75rem;
}

.hero-title span {
    color: var(--accent-cyan);
}

/* =========================================
   CARDS DE BENEFÍCIOS (PREMIUM GLASSMORPHISM)
   ========================================= */
.feature-card-premium {
    background: linear-gradient(145deg, var(--card-bg), rgba(0, 0, 0, 0.01));
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.feature-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: 0.6s ease;
}

.feature-card-premium:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-premium:hover::after {
    left: 150%;
}

/* =========================================
   CARDS DE PRODUTOS (3D VITRINE - ATUALIZADO)
   ========================================= */
.product-card-premium {
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.product-stage {
    background: linear-gradient(180deg, var(--card-bg), transparent);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    height: 220px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    position: relative;
    transition: all 0.4s ease;
    overflow: visible;
}

.virtual-card {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transform: rotateY(-20deg) rotateX(15deg) translateZ(0);
    box-shadow: -15px 20px 30px rgba(0, 0, 0, 0.3), inset 0 2px 3px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.virtual-card::before {
    content: 'W.tech';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 800;
    opacity: 0.7;
    z-index: 1;
}

.virtual-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200px;
    height: 200%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.2) 70%,
            rgba(255, 255, 255, 0.0) 100%);
    transform: skewX(-25deg);
    opacity: 1;
    z-index: 5;
    pointer-events: none;
}

.product-card-premium.is-clicking .virtual-card::after {
    left: 150%;
    transition: left 0.6s ease-in-out;
}

/* --- FORMATOS DOS PRODUTOS (Shapes) --- */
.shape-sign {
    width: 120px;
    height: 140px;
    border-radius: 12px;
    border-bottom: 8px solid rgba(0, 0, 0, 0.5);
}

.shape-badge {
    width: 95px;
    height: 145px;
    border-radius: 8px;
    flex-direction: column;
}

.badge-hole {
    width: 30px;
    height: 6px;
    background: var(--bg-color);
    border-radius: 10px;
    position: absolute;
    top: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: background-color 0.4s ease;
}

.shape-keychain {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.keychain-ring {
    width: 25px;
    height: 25px;
    border: 4px solid #aaa;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    background: transparent;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- MATERIAIS DOS PRODUTOS (Cores) --- */
.card-acrylic {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    color: var(--accent-cyan);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .card-acrylic {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
}

.card-pvc {
    background: linear-gradient(135deg, #222, #000);
    color: #fff;
}

[data-theme="light"] .card-pvc {
    background: #e0e0e0;
    color: #333;
}

.card-resin {
    background: linear-gradient(135deg, var(--accent-orange), #b05c17);
    color: #fff;
}

.product-card-premium:hover .product-stage {
    border-color: var(--accent-cyan);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), transparent);
}

.product-card-premium:hover .virtual-card {
    transform: rotateY(0deg) rotateX(0deg) translateZ(30px) scale(1.15);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4), inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.product-info {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.product-card-premium.featured .product-price {
    color: var(--accent-orange);
}

.product-card-premium.featured:hover .product-stage {
    border-color: var(--accent-orange);
    background: linear-gradient(180deg, rgba(242, 153, 74, 0.05), transparent);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(242, 153, 74, 0.3);
}

/* =========================================
   SEÇÃO DE CONTATO (CTA)
   ========================================= */
.cta-wrapper {
    background: var(--cta-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 12px;
    padding: 15px 35px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* =========================================
   FOOTER & LOGOS
   ========================================= */
.logo-wtech {
    color: var(--accent-cyan) !important;
    display: inline-flex;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo-wtech:hover {
    color: var(--accent-orange) !important;
    transform: scale(1.05);
}

.logo-wtech-footer {
    color: var(--text-muted);
    display: inline-flex;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.logo-wtech-footer:hover {
    color: var(--accent-cyan);
    transform: scale(1.05);
}

footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0 20px;
    margin-top: 80px;
}

/* =========================================
   MOCKUP DO CELULAR E NFC (HERO)
   ========================================= */
.phone-interaction-wrapper {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    perspective: 1000px;
    cursor: pointer;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background-color: #111;
    border-radius: 40px;
    border: 10px solid #222;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #555;
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.floating-nfc-card {
    position: absolute;
    top: 50%;
    right: -80px;
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #F5F5F5, #e0e0e0);
    border-radius: 12px;
    box-shadow: -10px 20px 30px rgba(0, 0, 0, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translateY(-50%) translateZ(50px) rotateY(-25deg);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.phone-screen {
    background-color: #f8f9fa;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.avatar {
    width: 80px;
    height: 80px;
    background: #07416b;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F5F5F5;
    box-shadow: 0 10px 20px rgba(7, 65, 107, 0.2);
}

.profile-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-btn {
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
}

.nfc-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 5;
}

.phone-interaction-wrapper.is-active .phone-mockup {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 0 2px #555;
}

.phone-interaction-wrapper.is-active .floating-nfc-card {
    right: 50px;
    transform: translateY(-50%) translateZ(0px) rotateY(0deg);
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
}

.phone-interaction-wrapper.is-active .phone-screen {
    opacity: 1;
    filter: blur(0px);
    transition-delay: 0.2s;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(30);
        opacity: 0;
    }
}

.phone-interaction-wrapper.is-active .nfc-ripple {
    animation: rippleEffect 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* =========================================
   GATILHOS DE CONVERSÃO & B2B
   ========================================= */

/* =========================================
   2. FAIXA DE SEGMENTOS (MARQUEE GLASSMORPHISM)
   ========================================= */
.partners-section {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

[data-theme="light"] .partners-section {
    background: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profession-tag {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    margin: 0 20px;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="light"] .profession-tag {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.profession-tag i {
    color: var(--accent-cyan);
}

.profession-tag:hover {
    color: var(--text-main);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-content {
    display: flex;
    animation: scrollMarquee 60s linear infinite;
    padding: 30px 0;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   3. CARDS DO SOFTWARE (PREMIUM GLASSMORPHISM)
   ========================================= */
.software-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.software-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 1;
}

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

[data-theme="light"] .software-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .software-feature-card h6,
[data-theme="light"] .software-feature-card i,
[data-theme="light"] .software-feature-card p {
    color: var(--text-main) !important;
}

.software-feature-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.software-feature-card:hover::after {
    left: 150%;
}

.software-feature-card i {
    transition: transform 0.4s ease;
}

.software-feature-card:hover i {
    transform: scale(1.15);
    color: var(--accent-cyan) !important;
}

/* 4. Botão Flutuante do WhatsApp */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.floating-wa-btn:hover {
    color: #fff;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   LUZES AMBIENTES (EFEITO AURORA MESH)
   ========================================= */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    /* Garante que não bloqueie os cliques no site */
}

/* Criando as esferas de luz com as cores da W.tech */
.ambient-glow::before,
.ambient-glow::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    /* CORRIGIDO: Era 0.35. Reduzimos para não clarear o fundo novo */
    animation: floatGlow 20s infinite alternate ease-in-out;
}

/* Esfera Ciano no topo à esquerda */
.ambient-glow::before {
    background: var(--accent-cyan);
    top: -10%;
    left: -10%;
}

/* Esfera Laranja na base à direita */
.ambient-glow::after {
    background: var(--accent-orange);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
    opacity: 0.10;
    /* CORRIGIDO: Era 0.25. Laranja mais sutil */
}

[data-theme="light"] .ambient-glow::before {
    opacity: 0.2;
}

[data-theme="light"] .ambient-glow::after {
    opacity: 0.15;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15%, 15%) scale(1.3);
    }
}

/* =========================================
   AJUSTES PREMIUM PARA MOBILE (CELULAR)
   ========================================= */
@media (max-width: 991px) {

    /* Oculta barra de promoções para poupar tela */
    .top-announcement-bar {
        display: none;
    }

    /* Ajuste de Navbar e Logo */
    .navbar {
        top: 15px !important;
        width: 92% !important;
        /* Dá um respiro nas laterais */
        border-radius: 20px !important;
        padding: 12px 20px !important;
        /* Mais transparência para o vidro aparecer de verdade no mobile */
        background-color: rgba(7, 65, 107, 0.05) !important;
    }

    [data-theme="light"] .navbar {
        background-color: rgba(244, 247, 249, 0.05) !important;
    }

    .navbar-brand {
        font-size: 1.5rem !important;
    }

    /* Hero Section - Joga pra baixo para não invadir a Navbar */
    .hero-section {
        padding-top: 160px;
        align-items: flex-start;
        /* Impede que o flex centralize a seção em telas compridas */
        text-align: center;
    }

    /* Centraliza todo o conteúdo da Hero */
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-trust-indicators>.d-flex {
        justify-content: center;
    }

    .badge-glass {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Botão flutuante WhatsApp menor no mobile */
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    /* Ajuste das luzes Aurora para aparecerem mais em telas estreitas */
    .ambient-glow::before,
    .ambient-glow::after {
        width: 150vw;
        height: 150vw;
        filter: blur(80px);
        opacity: 0.20;
        /* CORRIGIDO: Era 0.45. Escurecido para o mobile também */
    }

    .ambient-glow::before {
        top: -10%;
        left: -40%;
    }

    .ambient-glow::after {
        bottom: -10%;
        right: -40%;
    }
}

/* =========================================
   INDICADOR DE CLIQUE (MOCKUP CELULAR)
   ========================================= */
.click-indicator {
    position: absolute;
    top: -30px; /* Flutua um pouco acima do celular */
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 20;
    pointer-events: none; /* Garante que o usuário consiga clicar através dele */
    box-shadow: 0 4px 15px rgba(74, 236, 242, 0.4);
    animation: bounceIndicator 2s infinite;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    white-space: nowrap;
}

/* Setinha apontando para baixo */
.click-indicator::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--accent-cyan) transparent transparent transparent;
}

/* Animação de pulinho para chamar atenção */
@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Esconde o indicador suavemente quando o celular for ativado (clicado) */
.phone-interaction-wrapper.is-active .click-indicator {
    opacity: 0;
    visibility: hidden;
    animation: none; /* Para a animação para economizar processamento */
}

/* Ajuste sutil para mobile */
@media (max-width: 991px) {
    .click-indicator {
        top: -20px;
    }
}