﻿/* ============================================
   SOLUTION LICITAÃ‡Ã•ES - PREMIUM CORPORATE DESIGN
   Design: Premium, Elegante, Moderno
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Premium */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #AA8C2C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9E5B9 50%, #AA8C2C 100%);

    --dark-bg: #0B1120;
    /* Azul Marinho Profundo/Preto */
    --dark-surface: #151E32;
    /* Ligeiramente mais claro */
    --dark-overlay: rgba(11, 17, 32, 0.85);

    --blue-trust: #0066CC;
    --blue-gradient: linear-gradient(135deg, #0066CC 0%, #004C99 100%);

    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-800: #1F2937;

    /* Efeitos */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: visible;
    /* Changed from hidden to allow logo to show */
}

p {
    margin-bottom: 24px;
}

/* UtilitÃ¡rios */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-gray {
    background-color: var(--gray-100);
}

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

.text-gold {
    color: var(--gold-primary);
}

.text-blue {
    color: var(--blue-trust);
}

.text-white {
    color: var(--white);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-bg);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark p,
.section-dark span,
.section-dark li,
.section-dark i {
    color: var(--white);
}

.section-dark .text-gold {
    color: var(--gold-primary) !important;
}

.section-dark .text-blue {
    color: var(--blue-trust) !important;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
    transform: translateY(-50%);
}

.section-tag-blue {
    color: var(--blue-trust);
}

.section-tag-blue::before {
    background: var(--blue-trust);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 80px;
    /* Increased from 60px */
    width: auto;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    /* Inicialmente branco no hero */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--dark-bg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.header.scrolled .nav-toggle {
    color: var(--dark-bg);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Stacking layout */
    justify-content: space-between;
    /* Stats at bottom */
    align-items: center;
    padding-top: 180px;
    background: var(--dark-bg);
    color: var(--white);
    overflow: visible;
    /* Changed from hidden to allow logo to show outside */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-bg) 0%, rgba(11, 17, 32, 0.8) 50%, rgba(11, 17, 32, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-copy {
    flex: 1;
}

.pillar-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pillar-description {
    font-size: 0.9375rem;
    color: var(--gray-300);
    margin-bottom: 12px;
    line-height: 1.5;
}

.pillar-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-card-alt .pillar-icon {
    background: rgba(0, 102, 204, 0.1);
    color: var(--blue-trust);
}

.pillar-card-alt .pillar-label {
    color: var(--blue-trust);
}

.pillar-card-alt:hover {
    border-color: var(--blue-trust);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
}

.btn-blue {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.5);
}

/* ========== Stats ========== */
.hero-stats {
    position: relative;
    z-index: 5;
    width: 100%;
    /* Full width at bottom */
    max-width: 1200px;
    /* Centered with max width */
    margin: 0 auto;
    /* Centered*/
    padding-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid var(--gray-200);
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.stat-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--dark-bg);
}

.stat-info p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ========== About ========== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--gold-primary);
}

.about-badge i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ========== Services ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--dark-bg);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
}

/* ========== Why Choose ========== */
.why-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.quote-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--white);
}

/* ========== Solution Next ========== */
.solution-next {
    position: relative;
    background: var(--dark-bg);
    color: var(--white);
    overflow: hidden;
}

.solution-next-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.solution-next-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.solution-next .container {
    position: relative;
    z-index: 2;
}

.next-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.next-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.next-feature {
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--white);
}

.next-feature i {
    color: var(--blue-trust);
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.product-image {
    position: relative;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--blue-trust);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 48px;
    color: var(--dark-bg);
}

.product-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--blue-trust);
}

.product-features {
    list-style: none;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.product-features i {
    color: var(--blue-trust);
}

.product-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--dark-bg);
}

.stat span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========== Plans ========== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.plan-card-highlight {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    z-index: 2;
}

.plan-badge-highlight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-glow);
}

.plan-features {
    list-style: none;
    margin: 32px 0;
}

.plan-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-600);
}

.plan-features i {
    color: var(--gold-primary);
}

/* ========== Contact ========== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-info {
    background: var(--dark-bg);
    padding: 60px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: brightness(0) invert(1);
    /* Ensure it's white on dark bg if it's a dark logo */
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-decoration: none;
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-form-container {
    padding: 60px 60px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--gray-50);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* ========== Footer ========== */
.footer {
    background: var(--dark-bg);
    color: var(--gray-400);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* ========== Responsive ========== */
/* ========== WhatsApp Mockup ========== */
.mockup-phone {
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 12px;
    max-width: 300px;
    margin: 0 auto;
    border: 8px solid #1f2937;
    position: relative;
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1f2937;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    background: #e5ddd5;
    border-radius: 25px;
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wa-header {
    background: #008069;
    padding: 35px 15px 10px;
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wa-avatar {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008069;
    font-size: 18px;
}

.wa-info h4 {
    font-size: 15px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.wa-info span {
    font-size: 11px;
    opacity: 0.9;
}

.wa-body {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
    background-size: cover;
}

.wa-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 13.5px;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    color: #111b21;
    position: relative;
    animation: messagePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.8);
    transform-origin: top left;
}

.wa-bubble:nth-child(1) {
    animation-delay: 0.5s;
}

.wa-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.wa-bubble:nth-child(3) {
    animation-delay: 2.5s;
}

@keyframes messagePop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wa-time {
    font-size: 10px;
    color: #667781;
    float: right;
    margin-top: 5px;
    margin-left: 10px;
}

/* Typing Indicator */
.typing-indicator {
    background: white;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    width: fit-content;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
    align-items: center;
    animation: fadeIn 0.3s ease forwards;
    animation-delay: 3.5s;
    /* Appears after messages */
    opacity: 0;
}

.dot {
    width: 6px;
    height: 6px;
    background: #b4b4b4;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

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

/* ========== FAQ ========== */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--dark-bg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 300px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gold-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ========== Testimonials ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--gray-800);
    /* Contrast fix */
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--dark-bg);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: var(--dark-bg);
    display: block;
    margin-bottom: 4px;
}

.author-company {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========== Social Icons ========== */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .stat-card:last-child {
        border-bottom: none;
        grid-column: span 2;
        justify-content: center;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-badge {
        left: 20px;
        right: auto;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(10px);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        padding-top: 100px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.mobile-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 30px;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        color: var(--white);
        font-size: 1.1rem;
    }

    .header.scrolled .nav-link {
        color: var(--white);
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        min-height: 100vh;
        /* Ensure full height */
        padding-bottom: 0;
        /* Remove padding bottom to let stats sit flush if needed */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .stat-card {
        border-bottom: 1px solid var(--gray-200);
        padding: 20px 0;
        border-right: none;
    }

    .stat-card:last-child {
        border-bottom: none;
        grid-column: auto;
        justify-content: flex-start;
    }

    /* Components */
    .about-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        justify-content: center;
    }

    .next-intro,
    .contact-container,
    .footer-container,
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card-highlight {
        transform: scale(1);
    }

    .product-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .pillar-card {
        flex-direction: column;
        text-align: center;
    }

    .pillar-icon {
        margin: 0 auto;
    }

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

    .contact-info {
        padding: 40px 24px;
    }

    .contact-form-container {
        padding: 40px 24px;
    }
}

/* ========== Contrast Overrides for Dark Sections ========== */
/* Ensures cards inside dark sections have readable text */
.section-dark .service-card h3,
.section-dark .testimonial-card h3,
.section-dark .plan-card h3,
.section-dark .faq-question {
    color: var(--dark-bg) !important;
}

.section-dark .service-card p,
.section-dark .testimonial-card p,
.section-dark .testimonial-card .testimonial-text,
.section-dark .plan-card p,
.section-dark .faq-answer {
    color: var(--gray-600) !important;
}

.section-dark .service-card .service-icon {
    color: #B48E25 !important;
    /* Darker gold for better contrast on white */
}

.section-dark .testimonial-card .author-name {
    color: var(--dark-bg) !important;
}

.section-dark .testimonial-card .author-company {
    color: var(--gray-500) !important;
}

.section-dark .stars {
    color: #B48E25 !important;
    /* Darker gold for stars */
}

/* Also fix stats icons if they are on white */
.stat-icon {
    color: #B48E25;
    /* Darker gold */
}

/* WhatsApp Mockup Text Safety */
.wa-bubble,
.wa-bubble strong,
.wa-bubble span,
.wa-bubble p {
    color: #111b21 !important;
}

.wa-time {
    color: #667781 !important;
}

/* ========== Hero Premium ========== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 20% 50%, #0B1120 0%, #000000 100%);
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-premium .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-premium-content {
    max-width: 650px;
}

.hero-premium-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Glass Stats Strip */
.glass-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.glass-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.glass-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glass-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    max-width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.floating-card-text h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--dark-bg);
    font-weight: 700;
}

.floating-card-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--gray-600);
}

.fc-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 20%;
    left: -40px;
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Icon Visibility Fixes (Global) */
.service-card .service-icon,
.stat-card .stat-icon,
.pillar-card .pillar-icon,
.feature-icon {
    color: #B48E25 !important;
    /* Ensure visible on white */
}

.service-card:hover .service-icon,
.stat-card:hover .stat-icon {
    color: #AA8C2C !important;
    /* Darker on hover */
}

/* Responsive Hero Premium */
@media (max-width: 1024px) {
    .hero-premium {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-premium .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-premium-content {
        margin: 0 auto;
    }

    .hero-premium-visual {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .glass-stats-strip {
        margin-top: 40px;
    }

    .floating-card {
        display: none;
        /* Hide floating cards on mobile to avoid clutter */
    }
}

@media (max-width: 480px) {
    .glass-stats-strip {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ========== Global Premium Sections ========== */

    /* Premium Dark Section (Reusable) */
    .section-premium-dark {
        position: relative;
        background: radial-gradient(circle at 50% 50%, #0B1120 0%, #000000 100%);
        color: var(--white);
        overflow: hidden;
        padding: 100px 0;
    }

    .section-premium-dark::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        z-index: 0;
    }

    .section-premium-dark .container {
        position: relative;
        z-index: 2;
    }

    /* Premium Light Section */
    .section-premium-light {
        background: #FFFFFF;
        position: relative;
        padding: 100px 0;
    }

    .section-premium-light::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
        z-index: 0;
    }

    /* Premium Cards (Light) */
    .card-premium {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .card-premium::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gold-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .card-premium:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .card-premium:hover::after {
        transform: scaleX(1);
    }

    .card-premium-icon {
        width: 60px;
        height: 60px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #B48E25;
        /* Dark Gold */
        margin-bottom: 24px;
        transition: all 0.4s ease;
    }

    .card-premium:hover .card-premium-icon {
        background: var(--gold-primary);
        color: var(--dark-bg);
        transform: rotateY(180deg);
    }

    /* Premium Glass Cards (Dark) */
    .glass-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 40px 30px;
        transition: all 0.4s ease;
        height: 100%;
    }

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--gold-primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .glass-card-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--gold-primary);
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Step Cards (Como Funciona) */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .step-card {
        position: relative;
        padding: 40px 30px;
        background: #FFFFFF;
        border-radius: 24px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: var(--dark-bg);
        color: var(--gold-primary);
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.25rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Premium Price Card (Black Card) */
    .price-card-premium {
        background: linear-gradient(145deg, #1a1a1a, #0B1120);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 30px;
        padding: 60px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .price-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
        z-index: 0;
    }

    .price-card-premium * {
        position: relative;
        z-index: 1;
    }

    .price-badge {
        background: var(--gold-gradient);
        color: var(--dark-bg);
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 24px;
    }

    .price-amount {
        font-size: 4rem;
        font-weight: 800;
        color: var(--white);
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .price-amount span {
        font-size: 1.5rem;
        color: var(--gray-400);
        font-weight: 500;
    }

    .price-features {
        list-style: none;
        margin: 40px 0;
        text-align: left;
    }

    .price-features li {
        margin-bottom: 16px;
        color: var(--gray-300);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .price-features li i {
        color: var(--gold-primary);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }

        .section-premium-dark,
        .section-premium-light {
            padding: 60px 0;
        }
    }

    .glass-stat-item:not(:last-child)::after {
        display: none;
    }

    .glass-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .glass-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.wa-info h4 {
    color: white !important;
}

.wa-info span {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* LEGACY SUPPORT - Restoring original styles for compatibility */
.section {
    padding: 80px 0;
}

.section-gray {
    background-color: #f8f9fa;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.section-dark .section-title {
    color: white;
}

.section-subtitle,
.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-subtitle,
.section-dark .section-description {
    color: var(--gray-400);
}

/* Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Why Section */
.why-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.5;
    min-width: 50px;
}

.why-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.why-info p {
    color: var(--gray-400);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
}

.author-name {
    font-weight: 700;
    color: var(--dark-bg);
}

.author-company {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
}

.plan-card-highlight {
    border: 2px solid var(--gold-primary);
    transform: scale(1.05);
    z-index: 2;
}

.plan-badge-highlight {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--gold-primary);
}

/* Footer Legacy */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}


/* ========================================
   SEÇÕES PREMIUM - COMO FUNCIONA E SOLUÇÃO
   ======================================== */

/* Timeline Premium para Como Funciona */
.timeline-section {
    background: linear-gradient(135deg, #0B1120 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.timeline-step:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.5s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4),
        0 0 0 8px rgba(212, 175, 55, 0.1);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Seção Solução Premium */
.solution-premium {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.solution-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.solution-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 24px;
}

.solution-content h2 .highlight {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(0, 102, 204, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.solution-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 102, 204, 0.03) 100%);
}

.solution-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #b8941f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.solution-feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.solution-feature-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.solution-visual {
    position: relative;
}

.solution-cards-stack {
    position: relative;
    height: 500px;
}

.solution-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.solution-floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.solution-floating-card.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    z-index: 3;
    animation: floatCard1 4s ease-in-out infinite;
}

.solution-floating-card.card-2 {
    top: 120px;
    right: 0;
    width: 300px;
    z-index: 2;
    animation: floatCard2 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.solution-floating-card.card-3 {
    bottom: 0;
    left: 40px;
    width: 260px;
    z-index: 1;
    animation: floatCard3 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #b8941f 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-badge i {
    font-size: 1rem;
}

.solution-floating-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.solution-floating-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

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

.card-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
}

.card-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-cards-stack {
        height: 400px;
    }

    .solution-floating-card {
        width: 100% !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-bottom: 20px;
    }

    .timeline-step {
        padding-left: 60px;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }
}


/* ========================================
   SEÃ‡Ã•ES PREMIUM - BENEFÃCIOS, DEPOIMENTOS, PLANOS, FAQ
   ======================================== */

/* BenefÃ­cios Premium */
.benefits-premium {
    background: #ffffff;
    padding: 100px 0;
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card-premium {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), #f4d47a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.benefit-card-premium:hover::before {
    transform: scaleX(1);
}

.benefit-icon-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.benefit-icon-premium i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card-premium:hover .benefit-icon-premium {
    transform: rotateY(360deg) scale(1.1);
}

.benefit-card-premium h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-card-premium p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Depoimentos Premium */
.testimonials-premium {
    background: linear-gradient(135deg, #0B1120 0%, #1a2332 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--gold-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.testimonial-text-premium {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar-premium {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author-info span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Planos Premium */
.plans-premium {
    background: #ffffff;
    padding: 100px 0;
}

.plan-card-ultra {
    max-width: 700px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}

.plan-card-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.plan-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.plan-card-ultra h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-price-ultra {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.plan-price-ultra .currency {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: 600;
}

.plan-price-ultra .amount {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price-ultra .period {
    color: var(--gray-400);
    font-size: 1.3rem;
}

.plan-features-ultra {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.plan-features-ultra li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: var(--white);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.plan-features-ultra li i {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-cta-ultra {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.plan-cta-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.plan-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    color: var(--gray-400);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.plan-guarantee i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* FAQ Premium */
.faq-premium {
    background: #ffffff;
    padding: 100px 0;
}

.faq-container-premium {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 60px;
}

.faq-item-premium {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.faq-question-premium {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 60px 28px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-premium h4 {
    color: var(--dark-bg);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon-premium {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon-premium i {
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item-premium.active .faq-icon-premium {
    background: var(--gold-primary);
}

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

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer-premium p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Responsividade para seÃ§Ãµes premium */
@media (max-width: 768px) {

    .benefits-grid-premium,
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-card-ultra {
        padding: 35px 25px;
    }

    .plan-price-ultra .amount {
        font-size: 3.5rem;
    }

    .benefit-card-premium,
    .testimonial-card-premium {
        padding: 30px 24px;
    }
}

/* Footer Premium */
.footer-premium {
    background: #05080f;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-container-premium {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about-premium p {
    color: var(--gray-400);
    line-height: 1.7;
    margin: 20px 0 30px;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-premium span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.social-links-premium {
    display: flex;
    gap: 16px;
}

.social-link-premium {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-premium:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.footer-column-premium h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-column-premium h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-column-premium a {
    display: flex;
    align-items: center;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column-premium a:hover {
    color: var(--gold-primary);
    padding-left: 6px;
}

.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-premium p {
    margin: 5px 0;
}

@media (max-width: 992px) {
    .footer-container-premium {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container-premium {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   SEÇÃO CTA PREMIUM (SOLUTION NEXT)
   ======================================== */

.solution-next-premium {
    background: linear-gradient(135deg, #0B1120 0%, #1a2332 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.solution-next-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.solution-next-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

.solution-next-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-next-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.solution-next-badge i {
    font-size: 1.2rem;
}

.solution-next-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.solution-next-title .highlight {
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-next-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.solution-next-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.solution-next-feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.solution-next-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.solution-next-feature i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: block;
}

.solution-next-feature h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.solution-next-feature p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.solution-next-cta {
    margin-top: 50px;
}

.solution-next-cta .btn {
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 700;
}


/* ========================================
   ANIMAÇÕES PARA "POR QUE ESCOLHER"
   ======================================== */

.why-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

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

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

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

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-number {
    transition: all 0.4s ease;
}

.why-item:hover .why-number {
    background: linear-gradient(135deg, var(--gold-primary), #f4d47a);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}


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

@media (max-width: 768px) {
    .solution-next-title {
        font-size: 2.5rem;
    }

    .solution-next-description {
        font-size: 1.1rem;
    }

    .solution-next-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ========================================
   CORREÇÃO DE CONTRASTE - SOLUTION NEXT
   ======================================== */

/* Seção Solution Next - Melhorias de contraste */
.solution-next {
    position: relative;
}

.solution-next .section-subtitle {
    color: #e8e8e8 !important;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-next .text-blue {
    color: #4dabf7 !important;
    text-shadow: 0 2px 8px rgba(77, 171, 247, 0.4);
}

.next-intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
}

.intro-text p {
    color: #f0f0f0 !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

.intro-text strong {
    color: #ffffff;
    font-weight: 700;
}

.next-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.next-feature {
    background: rgba(77, 171, 247, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 171, 247, 0.25) !important;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.next-feature:hover {
    background: rgba(77, 171, 247, 0.25) !important;
    border-color: rgba(77, 171, 247, 0.4) !important;
    transform: translateX(5px);
}

.next-feature i {
    color: #4dabf7 !important;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.next-feature span {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
}

/* Cards de produtos */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-content p {
    color: #e8e8e8 !important;
}

.product-tag {
    background: rgba(77, 171, 247, 0.2);
    color: #4dabf7 !important;
    border: 1px solid rgba(77, 171, 247, 0.3);
}

@media (max-width: 768px) {
    .next-features {
        grid-template-columns: 1fr;
    }

    .next-intro {
        padding: 30px 20px;
    }
}


/* ========================================
   CORREÇÕES DE LAYOUT E CONTRASTE - SOLUTION NEXT
   ======================================== */

/* 1. CORREÇÃO CRÍTICA: Título principal em branco */
.solution-next .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Manter apenas "Inteligência Artificial" em ciano */
.solution-next .text-blue {
    color: #4dabf7 !important;
    text-shadow: 0 2px 12px rgba(77, 171, 247, 0.5);
}

/* 2. AJUSTE DE PADDING: Card "Agentes Solution Next" */
.next-intro {
    padding: 50px 40px !important;
}

.intro-text {
    margin-top: 20px;
}

.intro-text p {
    margin-top: 16px;
    margin-bottom: 16px;
}

/* 3. CENTRALIZAÇÃO VERTICAL: Card "Agente Informativo" */
.product-card.product-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

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

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsividade para os cards de produto */
@media (max-width: 992px) {
    .product-card.product-main {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .next-intro {
        padding: 40px 30px !important;
    }
}

@media (max-width: 576px) {
    .next-intro {
        padding: 30px 20px !important;
    }
}


/* ========================================
   CORREÇÕES ADICIONAIS - SOLUTION NEXT
   ======================================== */

/* Garantir que os estilos inline sejam reforçados */
#solution-next .section-title {
    color: #FFFFFF !important;
}

#solution-next .section-subtitle {
    color: #FFFFFF !important;
}

/* 2. Aumentar padding do card next-intro */
.next-intro {
    padding: 4rem 3rem !important;
}

/* 3. Garantir centralização vertical no product-content */
.product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .next-intro {
        padding: 3rem 2rem !important;
    }

    .product-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .next-intro {
        padding: 2rem 1.5rem !important;
    }
}


/* ========================================
   GLASSMORPHISM PREMIUM - AGENTE INFORMATIVO
   ======================================== */

/* Container do Card - Glassmorphism */
.product-card.product-main {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(77, 171, 247, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.product-main:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(77, 171, 247, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* 1. CONTRASTE & TIPOGRAFIA - Forçar cores claras */
.product-card.product-main h3,
.product-card.product-main .product-header h3 {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-card.product-main p,
.product-card.product-main .product-description {
    color: #E2E8F0 !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-card.product-main span,
.product-card.product-main li {
    color: #E2E8F0 !important;
}

.product-card.product-main .product-tag {
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.2), rgba(0, 194, 203, 0.2));
    color: #4DABF7 !important;
    border: 1px solid rgba(77, 171, 247, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estatísticas - Peso aumentado */
.product-stats .stat strong {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 2rem;
    background: linear-gradient(135deg, #4DABF7, #00C2CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-stats .stat span {
    color: #CBD5E0 !important;
    font-size: 0.9rem;
}

/* 3. LISTA DE FUNCIONALIDADES - Grid 2 colunas */
.product-card.product-main .product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.product-card.product-main .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-card.product-main .product-features li:hover {
    background: rgba(77, 171, 247, 0.08);
    border-color: rgba(77, 171, 247, 0.2);
    transform: translateX(5px);
}

/* Ícones Neon Ciano */
.product-card.product-main .product-features li i {
    color: #4DABF7 !important;
    font-size: 1.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(77, 171, 247, 0.6));
}

/* 4. BOTÃO DE AÇÃO - Gradiente Moderno */
.product-card.product-main .btn-blue {
    background: linear-gradient(135deg, #4DABF7 0%, #0066CC 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 20px rgba(77, 171, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card.product-main .btn-blue::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.5s ease;
}

.product-card.product-main .btn-blue:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(77, 171, 247, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-card.product-main .btn-blue:hover::before {
    left: 100%;
}

/* 5. LAYOUT DA IMAGEM - Object Fit & Overlay */
.product-card.product-main .product-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.product-card.product-main .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay Gradiente para fusão suave */
.product-card.product-main .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, rgba(11, 17, 32, 0.4) 50%, rgba(11, 17, 32, 0.9) 100%);
    pointer-events: none;
}

/* Badge do produto */
.product-card.product-main .product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.9), rgba(0, 102, 204, 0.9));
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.4);
    backdrop-filter: blur(10px);
}

/* Estatísticas - Grid horizontal */
.product-card.product-main .product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card.product-main .product-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsividade */
@media (max-width: 992px) {
    .product-card.product-main {
        flex-direction: column;
    }

    .product-card.product-main .product-image {
        min-height: 350px;
    }

    .product-card.product-main .product-image::after {
        width: 100%;
        height: 80px;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 32, 0.4) 50%, rgba(11, 17, 32, 0.9) 100%);
    }

    .product-card.product-main .product-features {
        grid-template-columns: 1fr;
    }

    .product-card.product-main .product-stats {
        grid-template-columns: 1fr;
    }
}


/* Forçar cor branca no título "Agentes Solution Next" */
.intro-text h3,
.next-intro h3 {
    color: #FFFFFF !important;
    font-weight: 700;
}


/* ========================================
   CTA SECTION - PREMIUM DARK
   ======================================== */

/* 1. BACKGROUND E CONTAINER */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil de fundo */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

/* 2. TIPOGRAFIA E CONTRASTE */
.cta-section h2 {
    color: #FFFFFF !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    color: #FFFFFF !important;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-section .cta-note {
    color: #D4AF37 !important;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2rem;
    opacity: 1;
}

/* 3. BOTÕES - PREMIUM GOLD E OUTLINE */
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

/* Botão 1 - Gold Premium (Solicitar Proposta) */
.cta-section .btn-white {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D47A 100%);
    color: #0B1120 !important;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-white::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.5s ease;
}

.cta-section .btn-white:hover {
    filter: brightness(110%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-section .btn-white:hover::before {
    left: 100%;
}

/* Botão 2 - Outline Branco (WhatsApp) */
.cta-section .btn-outline-white {
    background: transparent;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF;
    padding: 16px 38px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FFFFFF;
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-section .btn-outline-white:hover {
    color: #0B1120 !important;
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline-white:hover::before {
    width: 100%;
}

/* 4. VISUAL FX - Sombras e Profundidade */
.cta-section .cta-content {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ícones nos botões */
.cta-section .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

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

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section .btn-white,
    .cta-section .btn-outline-white {
        width: 100%;
        max-width: 350px;
    }

    .cta-section .cta-content {
        padding: 2rem 1.5rem;
    }
}


/* ========================================
   CORREÇÃO DO TAMANHO DA LOGO
   ======================================== */

/* Logo maior no header */
.logo-img,
.nav-logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Ajustar padding do header para acomodar logo maior */
.header .nav {
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Garantir alinhamento vertical dos itens do menu */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {

    .logo-img,
    .nav-logo img {
        height: 50px;
    }

    .header .nav {
        padding: 1rem 0;
    }
}


/* ========================================
   TEMA WHATSAPP INTENSIFICADO
   ======================================== */

/* Paleta de Cores WhatsApp */
:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-light: #DCF8C6;
    --whatsapp-bg: #E5DDD5;
}

/* HERO SECTION - Adicionar elementos WhatsApp */
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

/* Badges WhatsApp em todos os CTAs */
.btn-gold::after,
.btn.btn-lg::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Glass Stats Strip - Cor WhatsApp */
.glass-stats-strip {
    border-top: 2px solid var(--whatsapp-green);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(18, 140, 126, 0.05));
}

.glass-stat-number {
    color: var(--whatsapp-green) !important;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Floating Cards - Borda verde */
.floating-card {
    border-left: 3px solid var(--whatsapp-green);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(37, 211, 102, 0.2);
}

.floating-card-icon {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
}

/* WhatsApp Mockup - Brilho intenso */
.mockup-phone {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.wa-header {
    background: var(--whatsapp-dark) !important;
}

.wa-bubble {
    background: var(--whatsapp-light) !important;
    color: #000 !important;
}

/* Solução Section - Highlights WhatsApp */
.solution-feature:hover .solution-feature-icon {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    transform: scale(1.15) rotate(5deg);
}

/* Cards flutuantes com tema WhatsApp */
.solution-floating-card {
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.solution-floating-card:nth-child(1) {
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.15);
}

.card-badge {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
}

/* Timeline - Números verdes */
.timeline-number {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Benefits - Ícones WhatsApp */
.benefit-icon-premium {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
}

.benefit-card-premium:hover {
    border-color: var(--whatsapp-green);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

/* Testimonials - Estrelas verdes */
.testimonial-stars i {
    color: var(--whatsapp-green) !important;
}

/* Planos - Destaques WhatsApp */
.plan-badge-ultra {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
}

.plan-cta-ultra {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
}

.plan-features-ultra li i {
    color: var(--whatsapp-green) !important;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
}

/* FAQ - Ícones verdes */
.faq-icon-premium {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark)) !important;
}

.faq-item-premium:hover {
    border-color: var(--whatsapp-green);
}

/* Footer - Links WhatsApp */
.footer-premium .social-link-premium:hover,
.social-link-premium.whatsapp {
    background: var(--whatsapp-green) !important;
}

/* Adicionar notificação WhatsApp flutuante */
.whatsapp-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.3);
    font-weight: 700;
    font-size: 1rem;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInRight 1s ease, pulse 2s ease-in-out 1s infinite;
}

.whatsapp-notification:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 48px rgba(37, 211, 102, 0.6),
        0 0 60px rgba(37, 211, 102, 0.5);
}

.whatsapp-notification i {
    font-size: 1.5rem;
    margin-right: 10px;
    animation: bounce 1s infinite;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Product Card - Mais WhatsApp */
.product-card.product-main {
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.product-card.product-main:hover {
    border-color: var(--whatsapp-green);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(37, 211, 102, 0.4);
}

/* Section Headers com destaque WhatsApp */
.section-tag {
    border-left: 3px solid var(--whatsapp-green);
    padding-left: 12px;
}

/* Scroll Top Button - WhatsApp style */
.scroll-top {
    background: var(--whatsapp-green) !important;
}

.scroll-top:hover {
    background: var(--whatsapp-dark) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-notification {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* ========================================
   HERO PREMIUM - LIVE DATA NETWORK
   ======================================== */

/* 1. BASE PROFUNDA - Já existe, reforçando */
.hero-premium {
    position: relative;
    background-color: #0f172a;
    overflow: hidden;
}

/* 2. DUAL GLOW - Verde WhatsApp (Superior Direito) + Dourado (Inferior Esquerdo) */
.hero-premium::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 10s ease-in-out infinite reverse;
    z-index: 0;
}

/* 3. TECH GRID - Padrão de grade tecnológica */
.hero-premium .container {
    position: relative;
    z-index: 2;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* 4. PARTÍCULAS FLUTUANTES */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

/* Orb Verde (WhatsApp - Notificações) */
.floating-orb.green-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4), transparent);
    top: 20%;
    left: 15%;
    animation: float-up-down 6s ease-in-out infinite, pulse-orb 3s ease-in-out infinite;
}

.floating-orb.green-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
    top: 60%;
    right: 20%;
    animation: float-up-down 8s ease-in-out infinite 1s, pulse-orb 4s ease-in-out infinite;
}

/* Orb Dourada (Oportunidades) */
.floating-orb.gold-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent);
    top: 40%;
    left: 60%;
    animation: float-up-down 7s ease-in-out infinite 0.5s, pulse-orb 3.5s ease-in-out infinite;
}

.floating-orb.gold-2 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    bottom: 25%;
    right: 10%;
    animation: float-up-down 9s ease-in-out infinite 1.5s, pulse-orb 4.5s ease-in-out infinite;
}

/* Orb Híbrida (Centro - Mix de cores) */
.floating-orb.hybrid {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2), rgba(212, 175, 55, 0.2));
    top: 50%;
    left: 40%;
    animation: float-up-down 10s ease-in-out infinite 2s, pulse-orb 5s ease-in-out infinite;
}

/* Animações das partículas */
@keyframes float-up-down {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-30px) translateX(15px);
    }

    50% {
        transform: translateY(-50px) translateX(-10px);
    }

    75% {
        transform: translateY(-25px) translateX(20px);
    }
}

@keyframes pulse-orb {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

/* 5. INTEGRIDADE - Garantir z-index correto */
.hero-premium-content,
.hero-premium-visual {
    position: relative;
    z-index: 3;
}

.hero-buttons,
.glass-stats-strip,
.floating-card,
.mockup-phone {
    position: relative;
    z-index: 4;
}

/* Efeito de "dados fluindo" nas bordas */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(37, 211, 102, 0.6), transparent);
    opacity: 0;
    z-index: 1;
}

.data-stream.left {
    left: 5%;
    animation: stream-down 3s ease-in-out infinite;
}

.data-stream.right {
    right: 5%;
    animation: stream-down 4s ease-in-out infinite 1s;
}

@keyframes stream-down {
    0% {
        top: -100px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {

    .hero-premium::before,
    .hero-premium::after {
        width: 400px;
        height: 400px;
    }

    .floating-orb {
        width: 60px !important;
        height: 60px !important;
    }

    .hero-grid-overlay {
        background-size: 30px 30px;
    }
}


/* ========================================
   HERO LAYOUT FIX - REDUZIR ESPAÇAMENTO
   ======================================== */

/* Container principal do Hero */
.hero-premium>.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

/* Conteúdo do texto */
.hero-premium-content {
    max-width: 600px;
    width: 100%;
}

/* Visual (mockup) */
.hero-premium-visual {
    max-width: 500px;
    width: 100%;
    justify-self: start;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-premium>.container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 80px 30px;
    }

    .hero-premium-visual {
        justify-self: center;
    }
}


/* ========================================
   CORREÇÃO: MOCKUP MAIOR E CARDS SEM SOBREPOSIÇÃO
   ======================================== */

/* Aumentar tamanho do mockup */
.mockup-phone {
    width: 340px !important;
    height: 680px !important;
    max-width: none;
}

/* Aumentar o visual container */
.hero-premium-visual {
    max-width: 600px !important;
    position: relative;
    min-height: 700px;
}

/* Ajustar posicionamento dos floating cards - SEM SOBREPOSIÇÃO */
.floating-card:nth-child(1) {
    position: absolute;
    top: 80px;
    left: -120px;
    z-index: 5;
}

.floating-card:nth-child(2) {
    position: absolute;
    top: 280px;
    left: -100px;
    z-index: 5;
}

.floating-card:nth-child(3) {
    position: absolute;
    bottom: 100px;
    right: -80px;
    z-index: 5;
}

/* Ajustar conteúdo do WhatsApp */
.wa-header {
    padding: 18px 20px !important;
    font-size: 1.1rem !important;
}

.wa-status {
    font-size: 0.85rem !important;
}

.wa-bubble {
    padding: 16px 18px !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    max-width: 85% !important;
    margin-bottom: 12px !important;
}

.wa-bubble strong {
    font-size: 1rem !important;
    display: block;
    margin-bottom: 6px;
}

/* Ajustar scroll do conteúdo */
.wa-content {
    padding: 20px 16px !important;
    height: calc(100% - 80px) !important;
    overflow-y: auto;
}

/* Responsividade do mockup */
@media (max-width: 1200px) {
    .mockup-phone {
        width: 300px !important;
        height: 600px !important;
    }

    .hero-premium-visual {
        min-height: 600px;
    }

    .floating-card:nth-child(1) {
        left: -80px;
    }

    .floating-card:nth-child(2) {
        left: -70px;
    }
}

@media (max-width: 992px) {
    .floating-card {
        display: none;
    }

    .hero-premium-visual {
        min-height: auto;
    }
}


/* ========================================
   AJUSTE FINO: VISUAL COMPACTO (MOCKUP & CARDS)
   ======================================== */

/* 1. Celular mais compacto */
.mockup-phone {
    width: 300px !important;
    height: 600px !important;
    /* Mantendo proporção 1:2 */
}

/* 2. Cards Flutuantes Reduzidos */
.floating-card {
    max-width: 220px !important;
    padding: 12px !important;
    border-radius: 12px !important;
}

.floating-card h4 {
    font-size: 0.9rem !important;
    margin-bottom: 4px !important;
}

.floating-card p {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
}

.floating-card-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
}

/* 3. Reposicionamento (Mais próximo do celular) */
/* Card 1 - Esquerda Superior */
.floating-card:nth-child(1) {
    top: 100px !important;
    left: -50px !important;
    /* Aproximado (era -120px) */
}

/* Card 2 - Esquerda Inferior */
.floating-card:nth-child(2) {
    top: 300px !important;
    left: -40px !important;
    /* Aproximado (era -100px) */
}

/* Card 3 - Direita Inferior */
.floating-card:nth-child(3) {
    bottom: 80px !important;
    right: -30px !important;
    /* Aproximado (era -80px) */
}

/* Ajuste do container visual para comportar o conjunto mais compacto */
.hero-premium-visual {
    max-width: 450px !important;
    /* Reduzido de 600px */
    min-height: 620px !important;
}

/* Responsividade Ajustada */
@media (max-width: 1200px) {
    .mockup-phone {
        width: 260px !important;
        height: 520px !important;
    }

    .floating-card {
        max-width: 180px !important;
        left: -20px !important;
    }
}


/* ========================================
   CORREÇÃO FINAL: REMOVER SOBREPOSIÇÃO (CARDS AFASTADOS)
   ======================================== */

/* Garantir que o container permita elementos fora */
.hero-premium-visual {
    overflow: visible !important;
    position: relative;
}

/* Card 1 - Topo Esquerda (Afastado totalmente da tela) */
.floating-card:nth-child(1) {
    top: 40px !important;
    left: -190px !important;
    /* Movido bem para a esquerda */
    z-index: 10;
}

/* Card 2 - Meio/Baixo Esquerda (Afastado totalmente da tela) */
.floating-card:nth-child(2) {
    top: auto !important;
    bottom: 180px !important;
    left: -170px !important;
    /* Movido bem para a esquerda */
    z-index: 10;
}

/* Card 3 - Baixo Direita (Afastado totalmente da tela) */
.floating-card:nth-child(3) {
    bottom: 40px !important;
    right: -150px !important;
    /* Movido bem para a direita */
    z-index: 10;
}

/* Ajuste para telas médias onde pode faltar espaço lateral */
@media (max-width: 1400px) {
    .floating-card {
        transform: scale(0.9);
        /* Reduzir um pouco o tamanho */
    }

    .floating-card:nth-child(1) {
        left: -160px !important;
    }

    .floating-card:nth-child(2) {
        left: -140px !important;
    }
}

/* Esconder em telas menores para evitar bagunça */
@media (max-width: 1100px) {
    .floating-card {
        display: none !important;
    }
}


/* ========================================
   CORREÇÃO: MOVER CARDS PARA A DIREITA
   ======================================== */

/* Resetar posicionamento esquerdo e mover para direita */

/* Card 1 - Topo Direita */
.floating-card:nth-child(1) {
    left: auto !important;
    right: -190px !important;
    top: 60px !important;
    z-index: 10;
}

/* Card 2 - Meio Direita */
.floating-card:nth-child(2) {
    left: auto !important;
    right: -170px !important;
    top: 260px !important;
    bottom: auto !important;
    z-index: 10;
}

/* Card 3 - Baixo Direita (Ajuste fino) */
.floating-card:nth-child(3) {
    left: auto !important;
    right: -150px !important;
    bottom: 60px !important;
    z-index: 10;
}

/* Garantir visibilidade lateral no container */
.hero-premium-visual {
    margin-right: 100px;
    /* Dar espaço para os cards na direita */
}

/* Responsividade: Em telas menores, esconder ou ajustar */
@media (max-width: 1400px) {
    .hero-premium-visual {
        margin-right: 0;
    }

    .floating-card {
        right: -120px !important;
        transform: scale(0.85);
    }
}


/* ========================================
   CORREÇÃO: REALISMO DO CELULAR (BEZEL & NOTCH)
   ======================================== */

/* 1. Bezel (Borda do Celular) */
.mockup-phone {
    border: 12px solid #1a1a1a !important;
    /* Moldura escura */
    border-radius: 40px !important;
    /* Arredondamento externo */
    box-shadow:
        0 0 0 2px #333,
        /* Borda externa fina metálica */
        0 20px 50px rgba(0, 0, 0, 0.5) !important;
    /* Sombra profunda */
    background: #000;
    /* Fundo preto atrás da tela */
    overflow: hidden;
    /* Cortar conteúdo nas bordas */
    position: relative;
}

/* 2. Notch (Entalhe Superior) */
.mockup-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 100;
}

/* 3. Tela Interna */
.phone-screen {
    background: #E5DDD5;
    /* Fundo padrão WhatsApp */
    width: 100%;
    height: 100%;
    border-radius: 28px;
    /* Arredondamento interno da tela */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 4. Ajustes Internos (Header e Body) */
.wa-header {
    padding-top: 35px !important;
    /* Espaço para o notch */
    padding-bottom: 10px !important;
    background: #075E54 !important;
    /* Verde escuro clássico */
}

.wa-body {
    flex: 1;
    padding: 15px !important;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    /* Pattern WhatsApp Opcional */
    background-size: 300px;
    background-color: #E5DDD5;
}

/* Ajuste das bolhas de mensagem para escala realista */
.wa-bubble {
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wa-bubble strong {
    font-size: 14px !important;
}

/* Indicador de digitação menor */
.typing-indicator {
    padding: 8px 12px !important;
}

.dot {
    width: 6px !important;
    height: 6px !important;
    margin: 0 2px !important;
}


/* ========================================
   ANIMAÇÃO: AUTO-SCROLL (MENSAGENS NÃO CORTADAS)
   ======================================== */

/* Container das mensagens com scroll automático */
.wa-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    /* Esconder barra de rolagem */
    position: relative;
}

/* Wrapper interno para animar o scroll */
.wa-messages-wrapper {
    display: flex;
    flex-direction: column;
    animation: autoScroll 12s linear infinite;
    /* Animação de scroll contínuo */
    padding-bottom: 20px;
}

/* Keyframes para rolar o conteúdo para cima */
@keyframes autoScroll {

    0%,
    20% {
        transform: translateY(0);
    }

    35%,
    45% {
        transform: translateY(-60px);
        /* Rola para mostrar 2ª msg */
    }

    60%,
    70% {
        transform: translateY(-140px);
        /* Rola para mostrar 3ª msg */
    }

    85%,
    100% {
        transform: translateY(-220px);
        /* Rola para mostrar última msg */
    }
}

/* Ajuste para garantir que o conteúdo caiba e role */
.wa-body {
    align-items: flex-start;
    /* Alinhar mensagens à esquerda */
}

.wa-bubble.sent {
    align-self: flex-end;
    /* Mensagens enviadas à direita */
    background: #DCF8C6 !important;
}


/* ========================================
   CORREÇÕES FINAIS: RESPONSIVIDADE E ALINHAMENTO
   ======================================== */

/* 1. RESPONSIVIDADE (BREAKPOINTS) */

/* Mobile (< 768px) */
@media (max-width: 768px) {

    /* Container Principal - Coluna */
    .hero-premium>.container {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Texto e Botões Centralizados */
    .hero-premium-content {
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        max-width: 100% !important;
    }

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

    /* Tipografia Reduzida */
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-premium-content h2 {
        font-size: 1.2rem !important;
    }

    /* Mockup Ajustado */
    .hero-premium-visual {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-right: 0 !important;
        min-height: auto !important;
    }

    .mockup-phone {
        transform: scale(0.85) !important;
        transform-origin: center top !important;
        margin: 0 auto !important;
    }

    /* Ocultar Cards Flutuantes em Mobile */
    .floating-card {
        display: none !important;
    }

    /* Ajuste Stats Strip */
    .glass-stats-strip {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-premium>.container {
        gap: 2rem !important;
        padding: 60px 20px !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .mockup-phone {
        transform: scale(0.9) !important;
    }
}

/* 2. ALINHAMENTO DE ÍCONES (GLOBAL) */

/* Centralização Vertical de Ícones */
.btn i,
.badge i,
.list-item i,
.hero-badge i,
.product-tag i,
.wa-bubble i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    height: 100% !important;
}

/* Margem Padrão para Ícones antes de texto */
.btn i:first-child,
.badge i:first-child,
.hero-badge i:first-child,
.product-tag i:first-child {
    margin-right: 8px !important;
}

/* Correção específica para o botão WhatsApp */
.btn-lg i.fab.fa-whatsapp {
    font-size: 1.4rem !important;
}

/* 3. AJUSTE VISUAL FINO */

/* Wrapper de Scroll do WhatsApp */
.wa-messages-wrapper {
    width: 100%;
    padding-bottom: 40px;
    /* Espaço extra para garantir scroll completo */
}

/* Contraste do Botão WhatsApp */
.btn[style*="background: linear-gradient(135deg, #25D366"] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
}


/* ========================================
   VALIDAÇÃO COMPLETA: RESPONSIVIDADE UNIVERSAL
   ======================================== */

/* RESET DE ÍCONES - ALINHAMENTO GLOBAL */
i.fas,
i.fab,
i.far,
i.fal {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

/* Espaçamento padrão de ícones */
.btn i,
.badge i,
a i,
span i,
h1 i,
h2 i,
h3 i,
h4 i,
p i,
li i {
    margin-right: 8px;
}

.btn i:last-child,
a i:last-child {
    margin-right: 0;
    margin-left: 8px;
}

/* ========================================
   MOBILE FIRST (< 576px)
   ======================================== */
@media (max-width: 575px) {

    /* Container */
    .container {
        padding: 0 15px !important;
    }

    /* Hero Section */
    .hero-premium>.container {
        padding: 40px 15px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

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

    /* Mockup */
    .mockup-phone {
        width: 280px !important;
        height: 560px !important;
        transform: scale(1) !important;
    }

    /* Stats Strip */
    .glass-stats-strip {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .glass-stat-item {
        width: 100% !important;
    }

    /* Floating Cards */
    .floating-card {
        display: none !important;
    }

    /* Todas as Seções */
    section {
        padding: 40px 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    /* Grids */
    .benefits-grid-premium,
    .testimonials-grid-premium,
    .faq-container-premium {
        grid-template-columns: 1fr !important;
    }

    /* Cards */
    .benefit-card-premium,
    .testimonial-card-premium,
    .plan-card-ultra {
        margin-bottom: 20px !important;
    }

    /* Product Card */
    .product-card.product-main {
        grid-template-columns: 1fr !important;
    }

    .product-features {
        grid-template-columns: 1fr !important;
    }

    .product-stats {
        grid-template-columns: 1fr !important;
    }

    /* Timeline */
    .timeline-step {
        padding-left: 40px !important;
    }

    /* Footer */
    .footer-container-premium {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-column-premium {
        margin-bottom: 30px !important;
    }

    /* WhatsApp Notification */
    .whatsapp-notification {
        bottom: 15px !important;
        right: 15px !important;
        padding: 12px 18px !important;
        font-size: 0.85rem !important;
    }
}

/* ========================================
   MOBILE LARGE (576px - 767px)
   ======================================== */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .mockup-phone {
        width: 300px !important;
        height: 600px !important;
    }

    .benefits-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
}

/* ========================================
   TABLET (768px - 1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Hero */
    .hero-premium>.container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 30px !important;
    }

    .hero-premium-content {
        text-align: center !important;
        align-items: center !important;
    }

    .hero-premium-visual {
        margin: 0 auto !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .mockup-phone {
        width: 320px !important;
        height: 640px !important;
    }

    /* Floating Cards */
    .floating-card {
        display: none !important;
    }

    /* Grids */
    .benefits-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-features {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer */
    .footer-container-premium {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================
   DESKTOP SMALL (1024px - 1279px)
   ======================================== */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-premium>.container {
        gap: 3rem !important;
    }

    .mockup-phone {
        width: 300px !important;
        height: 600px !important;
    }

    .benefits-grid-premium {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ========================================
   DESKTOP LARGE (> 1280px)
   ======================================== */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px !important;
    }

    .hero-premium>.container {
        max-width: 1400px !important;
    }
}

/* ========================================
   ALINHAMENTO DE ÍCONES ESPECÍFICOS
   ======================================== */

/* Hero Badge */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
}

.hero-badge i {
    font-size: 1rem !important;
}

/* Botões */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn i {
    line-height: 1 !important;
}

/* Product Tag */
.product-tag {
    display: inline-flex !important;
    align-items: center !important;
}

/* Lista de Features */
.product-features li,
.solution-features li {
    display: flex !important;
    align-items: flex-start !important;
}

.product-features li i,
.solution-features li i {
    margin-top: 4px !important;
    flex-shrink: 0 !important;
}

/* Timeline Icons */
.timeline-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Benefit Icons */
.benefit-icon-premium {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 20px !important;
}

/* Stats Icons */
.glass-stat-item i,
.product-stats i {
    vertical-align: middle !important;
}

/* Social Links */
.social-link-premium {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* FAQ Icons */
.faq-icon-premium {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* WhatsApp Elements */
.wa-header i {
    vertical-align: middle !important;
}

/* Footer Icons */
.footer-column-premium a i {
    margin-right: 10px !important;
    vertical-align: middle !important;
}

/* ========================================
   CORREÇÕES DE OVERFLOW E SCROLL
   ======================================== */

/* Prevenir scroll horizontal */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Container seguro */
.container {
    overflow-x: hidden !important;
}

/* Imagens responsivas */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* ========================================
   ACESSIBILIDADE E TOQUE
   ======================================== */

/* Áreas de toque maiores em mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px !important;
        padding: 12px 20px !important;
    }

    .faq-question-premium {
        padding: 20px !important;
    }

    .nav-links a {
        padding: 10px 15px !important;
    }
}

/* Foco visível */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #4DABF7 !important;
    outline-offset: 2px !important;
}


/* ========================================
   RE-IMPLEMENTAÇÃO: RESPONSIVIDADE & ALINHAMENTO (V2)
   ======================================== */

/* 1. RESET E ALINHAMENTO GLOBAL DE ÍCONES */
i.fas,
i.fab,
i.far,
i.fal,
.fa,
.fas,
.fab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

/* Margem padrão para ícones à esquerda do texto */
.btn i:not(:last-child),
.badge i:not(:last-child),
.nav-link i:not(:last-child),
.list-item i:not(:last-child) {
    margin-right: 8px !important;
}

/* 2. HERO SECTION - RESPONSIVIDADE */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .hero-premium>.container {
        display: flex !important;
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 40px !important;
    }

    .hero-premium-content {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

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

    /* Celular Mobile */
    .hero-premium-visual {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
        height: auto !important;
        min-height: auto !important;
    }

    .mockup-phone {
        width: 280px !important;
        height: 560px !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    /* Esconder cards flutuantes no mobile para limpeza */
    .floating-card {
        display: none !important;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-premium>.container {
        grid-template-columns: 1fr !important;
        /* Coluna única também no tablet */
        gap: 50px !important;
        text-align: center !important;
    }

    .hero-premium-content {
        align-items: center !important;
        margin: 0 auto !important;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .mockup-phone {
        width: 320px !important;
        height: 640px !important;
        margin: 0 auto !important;
    }

    /* Cards flutuantes visíveis mas ajustados */
    .floating-card {
        transform: scale(0.8) !important;
    }

    .floating-card:nth-child(1) {
        right: -80px !important;
    }

    .floating-card:nth-child(2) {
        right: -60px !important;
    }

    .floating-card:nth-child(3) {
        right: -40px !important;
    }
}

/* Desktop (> 1024px) */
@media (min-width: 1025px) {
    .hero-premium>.container {
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
        text-align: left !important;
    }

    .hero-premium-content {
        align-items: flex-start !important;
    }
}

/* 3. WHATSAPP BUTTON & SCROLL */
.wa-messages-wrapper {
    animation: autoScroll 15s linear infinite !important;
    /* Mais lento para leitura */
}

.btn-whatsapp-pulse {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}

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

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

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

/* 4. AJUSTES GERAIS DE LAYOUT */
.section {
    overflow-x: hidden !important;
    /* Prevenir scroll horizontal global */
}

img {
    max-width: 100%;
    height: auto;
}


/* ========================================
   CORREÇÃO ROBUSTA: RESPONSIVIDADE MOBILE & TABLET
   ======================================== */

/* 1. GLOBAL: MATAR SCROLL HORIZONTAL */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
    max-width: 100vw !important;
}

/* 2. HERO PREMIUM - MOBILE (< 1024px) */
@media (max-width: 1023px) {
    .hero-premium>.container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .hero-premium-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* CRÍTICO: Ocultar cards flutuantes que quebram layout */
    .floating-card {
        display: none !important;
    }

    /* Ajuste do Mockup */
    .hero-premium-visual {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    .mockup-phone {
        transform: scale(0.85) !important;
        margin: 20px auto 0 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }

    /* Stats Strip */
    .glass-stats-strip {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
}

/* 3. SOLUTION NEXT - MOBILE (< 992px) */
@media (max-width: 991px) {
    .product-card.product-main {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .product-image {
        width: 100% !important;
        height: 250px !important;
        position: relative !important;
    }

    .product-image img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .product-content {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    .product-stats {
        grid-template-columns: 1fr !important;
        /* 1 Coluna */
        gap: 20px !important;
    }

    .product-features {
        grid-template-columns: 1fr !important;
    }
}

/* 4. TIPOGRAFIA MOBILE (< 768px) */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }
}

/* 5. FOOTER E GRIDS GERAIS (< 768px) */
@media (max-width: 767px) {

    .footer-container-premium,
    .benefits-grid-premium,
    .testimonials-grid-premium,
    .plans-grid-premium,
    .faq-container-premium {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-column-premium {
        text-align: center !important;
        align-items: center !important;
    }

    .footer-column-premium h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .social-links-premium {
        justify-content: center !important;
    }
}


/* ========================================
   CORREÇÃO: TAMANHO DA LOGO (HEADER)
   ======================================== */

.nav-logo-image {
    height: 45px !important;
    /* Reduzido de 72px para ficar proporcional */
    width: auto !important;
    transition: all 0.3s ease;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .nav-logo-image {
        height: 35px !important;
        /* Reduzido de 54px */
    }
}

/* Ajuste do container da marca para alinhar com a nova altura */
.nav-brand {
    gap: 12px !important;
}


/* ========================================
   CORREÇÃO DEFINITIVA: TAMANHO DA LOGO
   ======================================== */

.nav-logo-image,
.logo-img,
.nav-logo img {
    height: 50px !important;
    /* Reduzido de 80px para 50px (tamanho padrão ideal) */
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Mobile (< 768px) */
@media (max-width: 768px) {

    .nav-logo-image,
    .logo-img,
    .nav-logo img {
        height: 35px !important;
        /* Tamanho compacto para celular */
        max-width: 150px;
        /* Trava de segurança de largura */
    }
}


/* ========================================
   AJUSTE FINO: TAMANHO DA LOGO (MÉDIO)
   ======================================== */

.nav-logo-image,
.logo-img,
.nav-logo img {
    height: 60px !important;
    /* Aumentado para 60px (Equilíbrio) */
}

/* Mobile (< 768px) */
@media (max-width: 768px) {

    .nav-logo-image,
    .logo-img,
    .nav-logo img {
        height: 42px !important;
        /* Aumentado para 42px */
    }
}

/* ==========================================
   CORREÇÃO CRÍTICA: HEADER MOBILE (Adicionar ao final do arquivo)
   ========================================== */
@media (max-width: 768px) {

    /* 1. Reduz o container do Header */
    .header {
        padding: 10px 0 !important;
        /* Reduz de 20px para 10px */
        height: 60px !important;
        /* Define altura fixa compacta */
        align-items: center;
        display: flex;
    }

    .header .nav {
        padding: 0 24px !important;
        /* Garante alinhamento lateral */
        width: 100%;
    }

    /* 2. Reduz a Logo drasticamente */
    .logo-img,
    .nav-logo img {
        height: 35px !important;
        /* Reduz de 80px para 35px */
        width: auto !important;
        object-fit: contain;
    }

    /* 3. Alinha o ícone do menu (Hambúrguer) */
    .nav-toggle {
        font-size: 1.5rem !important;
        display: flex !important;
        align-items: center;
        height: 35px;
        /* Mesma altura da logo para alinhar */
    }

    /* 4. Corrige a sobreposição do Hero (conteúdo entrando no header) */
    .hero,
    .hero-premium {
        padding-top: 80px !important;
        /* Compensa a altura do header fixo */
        min-height: auto !important;
        /* Remove altura forçada que causa espaços brancos */
    }

    /* 5. Ajuste do Menu Dropdown para não cobrir o Header */
    .nav-menu {
        top: 60px !important;
        /* Começa logo abaixo do novo header */
        height: calc(100vh - 60px) !important;
        padding-top: 20px !important;
    }
}

/* ==========================================
   HERO SECTION MOBILE FIX (CRITICAL)
   ========================================== */
@media (max-width: 768px) {

    /* Force Hero container to stack vertically */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 40px !important;
    }

    /* Ensure text container takes full width */
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-bottom: 20px !important;
    }

    /* Reset margins for stats card to prevent overlap */
    .hero-stats {
        margin-top: 0 !important;
        /* Remove negative margin */
        padding-top: 20px !important;
        position: relative !important;
        z-index: 2 !important;
        /* Ensure visibility */
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Stack stats cards vertically */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    /* Adjust individual stat cards */
    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 15px 0 !important;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }

    /* Ensure text content is visible and spaced */
    .hero-content {
        margin-bottom: 30px !important;
    }
}

/* ==========================================
   HERO SECTION MOBILE FIX (CRITICAL)
   ========================================== */
@media (max-width: 768px) {

    /* Force Hero container to stack vertically */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 40px !important;
    }

    /* Ensure text container takes full width */
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-bottom: 20px !important;
    }

    /* Reset margins for stats card to prevent overlap */
    .hero-stats {
        margin-top: 0 !important;
        /* Remove negative margin */
        padding-top: 20px !important;
        position: relative !important;
        z-index: 2 !important;
        /* Ensure visibility */
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Stack stats cards vertically */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    /* Adjust individual stat cards */
    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 15px 0 !important;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }

    /* Ensure text content is visible and spaced */
    .hero-content {
        margin-bottom: 30px !important;
    }
}

/* ==========================================
   WHY CHOOSE SECTION MOBILE FIX
   ========================================== */
@media (max-width: 768px) {
    .why-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .why-content {
        width: 100% !important;
        order: 1 !important;
    }

    .why-visual {
        width: 100% !important;
        order: 2 !important;
        margin-top: 0 !important;
    }

    .quote-card {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* ==========================================
   HERO SECTION MOBILE FIX (CRITICAL)
   ========================================== */
@media (max-width: 768px) {

    /* Force Hero container to stack vertically */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 40px !important;
    }

    /* Ensure text container takes full width */
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-bottom: 20px !important;
    }

    /* Reset margins for stats card to prevent overlap */
    .hero-stats {
        margin-top: 0 !important;
        /* Remove negative margin */
        padding-top: 20px !important;
        position: relative !important;
        z-index: 2 !important;
        /* Ensure visibility */
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Stack stats cards vertically */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    /* Adjust individual stat cards */
    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 15px 0 !important;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }

    /* Ensure text content is visible and spaced */
    .hero-content {
        margin-bottom: 30px !important;
    }
}

/* ==========================================
   WHY CHOOSE SECTION MOBILE FIX
   ========================================== */
@media (max-width: 768px) {
    .why-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .why-content {
        width: 100% !important;
        order: 1 !important;
    }

    .why-visual {
        width: 100% !important;
        order: 2 !important;
        margin-top: 0 !important;
    }

    .quote-card {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* ==========================================
   PHONE MOCKUP MOBILE FIX
   ========================================== */
@media (max-width: 768px) {
    .mockup-phone {
        max-width: 280px !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: scale(0.85) !important;
        transform-origin: center !important;
    }

    .product-image {
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        justify-content: center !important;
        padding: 20px 10px !important;
    }
}

/* ========================================
   USER REQUEST: INCREASE HEADER LOGO
   ======================================== */
.logo-img,
.nav-logo img {
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
}

/* Adjust header padding to accommodate larger logo */
.header {
    padding: 15px 0 !important;
}

/* Mobile adjustment to prevent it from being too huge */
@media (max-width: 768px) {

    .logo-img,
    .nav-logo img {
        height: 50px !important;
        max-height: 50px !important;
    }
}

/* ========================================
   FIX: FOOTER TEXT OVERLAP
   ======================================== */
.footer-column-premium {
    position: relative !important;
    z-index: auto !important;
}

.footer-column-premium h4,
.footer-column-premium a,
.footer-column-premium p {
    position: relative !important;
    z-index: auto !important;
}

.footer-logo-premium,
.footer-about-premium {
    position: relative !important;
    z-index: auto !important;
}

/* ==========================================
   SOLUTION NEXT VISUAL COMPONENT
   ========================================== */
.solution-next-visual {
    background: linear-gradient(135deg, rgba(15, 18, 41, 0.95) 0%, rgba(26, 29, 58, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 30px;
    max-width: 600px;
}

.solution-next-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse-glow 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.sn-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sn-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.sn-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.sn-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.sn-content {
    position: relative;
    z-index: 2;
}

.sn-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.sn-highlight {
    color: #d4af37;
    font-weight: 600;
}

.sn-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sn-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sn-badge i {
    font-size: 0.7rem;
    color: #d4af37;
}


/* Spacing adjustment for About section */
.why-visual {
    width: 100% !important;
    order: 2 !important;
    margin-top: 0 !important;
}

.quote-card {
    width: 100% !important;
    margin: 0 !important;
}
}

/* ==========================================
   PHONE MOCKUP MOBILE FIX
   ========================================== */
@media (max-width: 768px) {
    .mockup-phone {
        max-width: 280px !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: scale(0.85) !important;
        transform-origin: center !important;
    }

    .product-image {
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        justify-content: center !important;
        padding: 20px 10px !important;
    }
}

/* ========================================
   USER REQUEST: INCREASE HEADER LOGO
   ======================================== */
.logo-img,
.nav-logo img {
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
}

/* Adjust header padding to accommodate larger logo */
.header {
    padding: 15px 0 !important;
}

/* Mobile adjustment to prevent it from being too huge */
@media (max-width: 768px) {

    .logo-img,
    .nav-logo img {
        height: 50px !important;
        max-height: 50px !important;
    }
}

/* ========================================
   FIX: FOOTER TEXT OVERLAP
   ======================================== */
.footer-column-premium {
    position: relative !important;
    z-index: auto !important;
}

.footer-column-premium h4,
.footer-column-premium a,
.footer-column-premium p {
    position: relative !important;
    z-index: auto !important;
}

.footer-logo-premium,
.footer-about-premium {
    position: relative !important;
    z-index: auto !important;
}

/* ==========================================
   SOLUTION NEXT VISUAL COMPONENT
   ========================================== */
.solution-next-visual {
    background: linear-gradient(135deg, rgba(15, 18, 41, 0.95) 0%, rgba(26, 29, 58, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 30px;
    max-width: 600px;
}

.solution-next-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse-glow 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.sn-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sn-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.sn-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.sn-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.sn-content {
    position: relative;
    z-index: 2;
}

.sn-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.sn-highlight {
    color: #d4af37;
    font-weight: 600;
}

.sn-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sn-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sn-badge i {
    font-size: 0.7rem;
    color: #d4af37;
}


/* Spacing adjustment for About section */
.about-features {
    margin-top: 50px;
}


/* ========== Solution Next New Structure ========== */
.next-products-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-wrapper {
    position: relative;
}

.future-products {
    margin-top: 40px;
}

.product-coming-soon {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-coming-soon:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

@media (min-width: 992px) {
    .next-products-container {
        gap: 80px;
    }
}

/* ========== Solution Next Premium Brand ========== */
.solution-next-brand {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.bg-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.85) 100%);
    z-index: 1;
}

.brand-content-centered {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.brand-logo-large {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1;
}

.text-blue-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0.9;
}

.brand-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
}

.brand-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-badge i {
    color: #4facfe;
}

/* ========== Solution Next Products Extension ========== */
.solution-next-products {
    background: #0a192f;
    /* Dark background matching brand section */
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.coming-soon-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-400);
}

.coming-soon-text h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.coming-soon-text p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.95rem;
}

.coming-soon-badge-large {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .brand-logo-large {
        font-size: 2.5rem;
    }

    .coming-soon-card-premium {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .coming-soon-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== Advanced Visual Enhancements ========== */

/* Particle System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-10vh) translateX(20px);
        opacity: 0;
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Animated Text Gradient */
.text-blue-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 3s linear infinite;
}

@keyframes shimmer-text {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* 3D Tilt Effect for Cards */
.product-card,
.coming-soon-card-premium {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover,
.coming-soon-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 172, 254, 0.3) !important;
}

/* Pulse Glow for Badges */
.brand-badge {
    position: relative;
    overflow: hidden;
}

.brand-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.brand-badge:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================
   SOLUTION NEXT PREMIUM ENHANCEMENTS
   ========================================== */

/* Technology Pillars Grid */
.tech-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

/* Individual Tech Cards */
.tech-pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-pillar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.2);
}

.tech-pillar-card:hover::before {
    opacity: 1;
}

/* Tech Pillar Icon */
.tech-pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
    position: relative;
    z-index: 1;
}

.tech-pillar-icon i {
    font-size: 2rem;
    color: #fff;
}

/* Tech Pillar Title */
.tech-pillar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Tech Pillar Description */
.tech-pillar-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Tech Pillar Features */
.tech-pillar-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.tech-pillar-features span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-pillar-features span i {
    color: #4facfe;
    font-size: 0.9rem;
}

/* Impact Section */
.sn-impact-section {
    margin: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.sn-impact-description {
    text-align: center;
    margin-bottom: 40px;
}

.sn-impact-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.sn-impact-description strong {
    color: #4facfe;
    font-weight: 700;
}

/* Impact Stats */
.sn-impact-content {
    display: flex;
    justify-content: center;
}

.sn-impact-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.impact-stat-item {
    text-align: center;
    position: relative;
}

.impact-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-stat-number span {
    font-size: 2rem;
}

.impact-slash {
    color: #4facfe;
}

.impact-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tech-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .tech-pillar-card {
        padding: 25px;
    }

    .impact-stat-number {
        font-size: 2.5rem;
    }

    .sn-impact-stats {
        gap: 30px;
    }
}


/* ==========================================
   SOLUTION NEXT PRODUCTS SHOWCASE
   ========================================== */

.sn-products-preview {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.sn-products-header {
    text-align: center;
    margin-bottom: 30px;
}

.sn-products-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.sn-products-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

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

.sn-product-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sn-product-item.active {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
    border-color: rgba(79, 172, 254, 0.3);
}

.sn-product-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.sn-product-item.active:hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.6);
}

.sn-product-status {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-active {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
}

.status-soon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sn-product-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.sn-product-item.active .sn-product-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.sn-product-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.sn-product-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.sn-product-arrow {
    margin-top: 15px;
    color: #4facfe;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sn-product-item.active:hover .sn-product-arrow {
    opacity: 1;
    transform: translateX(0);
}

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

/* Product Mini Cards */
.product-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-3px);
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.mini-card-icon {
    font-size: 1.5rem;
    color: #25D366;
    margin-bottom: 10px;
}

.mini-card h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.mini-card p {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .product-mini-cards {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Plan Bonus Section */
.plan-bonus-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.plan-bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.plan-bonus-item:hover {
    transform: translateX(5px);
}

.plan-bonus-item.highlight-ai {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.plan-bonus-item.highlight-portal {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bonus-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-ai .bonus-icon-wrapper {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.highlight-portal .bonus-icon-wrapper {
    background: var(--gold-primary, #D4AF37);
    color: #fff;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.bonus-content strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight-ai .bonus-content strong {
    color: #25D366;
}

.highlight-portal .bonus-content strong {
    color: var(--gold-primary, #D4AF37);
}

.bonus-content span {
    font-size: 0.85rem;
    color: #666;
}