:root {
    --bg-color: #0b0f19; /* dark blue/black */
    --text-color: #f1f5f9; /* slate-100 */
    --text-muted: #94a3b8; /* slate-400 */
    --primary: #3b82f6; /* blue-500 */
    --primary-hover: #2563eb;
    --secondary: #ec4899; /* pink-500 */
    --success: #10b981; /* emerald-500 */
    --success-hover: #059669;
    
    --glass-bg: rgba(17, 24, 39, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15), transparent 40%);
    background-attachment: fixed;
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

/* Background Animations */
.blob-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.35;
    border-radius: 50%;
    animation: float 12s infinite alternate ease-in-out;
}

.blob1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    animation-delay: 0s;
}

.blob2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    animation-delay: 2s;
}

.blob3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: var(--success);
    animation-delay: 4s;
    opacity: 0.15;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -60px) scale(1.1); }
}

/* ==========================================================================
   NAVBAR (DESKTOP & 2-ROW COMPACT MOBILE LAYOUT)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 5%;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
    height: 76px;
    transition: all 0.3s ease;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

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

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

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-gradient {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Actions Container */
.nav-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Botão Módulo Bilheteria */
.btn-bilheteria {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.15rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-bilheteria:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: #60a5fa;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.btn-bilheteria i {
    color: #60a5fa;
    font-size: 0.92rem;
}

/* Botão WhatsApp / Consultor */
.btn-consultor {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: var(--success);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-consultor:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-consultor i {
    font-size: 1.05rem;
}

/* ==========================================================================
   BUTTONS GERAIS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--success);
    color: white;
}

.btn-primary:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.5);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.btn-cta {
    display: inline-flex;
    align-self: flex-start;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   LAYOUT GERAL
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 130px 5% 4rem;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    min-height: calc(100vh - 130px);
}

@media (min-width: 992px) {
    .hero {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
    }
}

/* Hero Content */
.badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.badge-pink {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.3);
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.95rem;
}
.stat-item i {
    color: var(--secondary);
}

/* ==========================================================================
   GLASS CARDS & FORMS
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(236,72,153,0.5));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.form-header {
    margin-bottom: 1.75rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.input-group {
    position: relative;
    margin-bottom: 1.15rem;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 3rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.input-group input::placeholder {
    color: #64748b;
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}
.hidden { display: none; }

/* ==========================================================================
   IMPACT SECTIONS (CARTÃO DO CLIENTE & OPERADOR DE BAR)
   ========================================================================== */
.impact-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.85), rgba(11,15,25,0.95));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    border-radius: 28px;
}

.impact-bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(59,130,246,0.12), transparent 50%);
    pointer-events: none;
}

.impact-bg-glow-pink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 70%, rgba(236,72,153,0.1), transparent 50%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 0 2rem;
}

@media (min-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.impact-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 480px;
    filter: blur(90px);
    z-index: -1;
}

.primary-glow {
    background: var(--primary);
    opacity: 0.25;
}

.secondary-glow {
    background: var(--secondary);
    opacity: 0.25;
}

.impact-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-blue {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-pink {
    background: linear-gradient(135deg, var(--secondary), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

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

.step-num {
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}

.step-pink {
    background: rgba(236,72,153,0.2);
    color: #f472b6;
}

.step-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   SMARTPHONE MOCKUPS (CRISTAL CLEAR & PERFECTLY FRAMED)
   ========================================================================== */
.smartphone-mockup {
    position: relative;
    width: 290px;
    max-width: 90vw;
    height: auto;
    aspect-ratio: 589 / 1024;
    border: 8px solid #1f2937;
    border-radius: 36px;
    background: #0b0f19;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.85), 0 0 35px rgba(59, 130, 246, 0.25), inset 0 0 0 2px rgba(255,255,255,0.1);
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 6rem 0 4rem;
}

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

.features-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: #fff;
}

.features-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-card {
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    color: #cbd5e1;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 0.9rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    background: rgba(0,0,0,0.5);
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    margin: 0 auto;
}

.footer-logo-text {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.copyright {
    font-size: 0.85rem;
    margin-top: 2.5rem;
    color: #64748b;
}

/* Animations */
.fadeIn { animation: fadeIn 1s ease-out forwards; }
.slideInRight { animation: slideInRight 1s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   MOBILE RESPONSIVE RULES (2-ROW COMPACT NAVBAR & PEQUENINOS BUTTONS)
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 0.6rem 4% 0.6rem;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }

    .nav-top-row {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    /* Linha de Botões Abaixo (Pequenininhos, Elegantes e Discretos) */
    .nav-actions-row {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    /* Botão Bilheteria Pequenininho à Esquerda */
    .btn-bilheteria {
        flex: 1;
        justify-content: center;
        padding: 0.38rem 0.6rem;
        font-size: 0.74rem;
        border-radius: 9px;
        gap: 5px;
        letter-spacing: 0.2px;
    }
    .btn-bilheteria i {
        font-size: 0.78rem;
    }

    /* Botão WhatsApp / Consultor Pequenininho à Direita */
    .btn-consultor {
        flex: 1;
        justify-content: center;
        padding: 0.38rem 0.6rem;
        font-size: 0.74rem;
        border-radius: 9px;
        gap: 5px;
    }
    .btn-consultor i {
        font-size: 0.88rem;
    }

    /* Container com espaçamento proporcional */
    .container {
        padding: 130px 4% 3rem;
    }

    .hero {
        gap: 2.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 0.6rem;
    }

    .stat-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-header h3 {
        font-size: 1.35rem;
    }

    .impact-section {
        padding: 3rem 0;
        border-radius: 20px;
        margin-top: 2.5rem;
    }

    .impact-grid {
        padding: 0 1rem;
        gap: 2.5rem;
    }

    .impact-reverse .impact-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .smartphone-mockup {
        width: 250px;
        border-width: 6px;
        border-radius: 28px;
    }

    .impact-title {
        font-size: 1.8rem;
    }

    .impact-desc {
        font-size: 0.98rem;
    }

    .features-section {
        padding: 3.5rem 0 2rem;
    }

    .features-header {
        margin-bottom: 2.5rem;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }
}

/* Telas muito pequenas (< 380px) */
@media (max-width: 380px) {
    .navbar {
        padding: 0.5rem 3%;
        gap: 5px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .btn-bilheteria {
        font-size: 0.7rem;
        padding: 0.32rem 0.45rem;
    }

    .btn-consultor {
        font-size: 0.7rem;
        padding: 0.32rem 0.45rem;
    }
}

/* ==========================================================================
   NOVOS COMPONENTES: HERO CTAS, EVENTOS NAV, SIMULADOR, FASHION & FOOTER
   ========================================================================== */

/* Botão Eventos no Navbar */
.btn-eventos-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.6rem 1.15rem;
    border-radius: 12px;
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #f472b6;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-eventos-nav:hover {
    background: rgba(236, 72, 153, 0.25);
    border-color: #f472b6;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.8rem 0;
    flex-wrap: wrap;
}

.btn-hero-bilheteria {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 1.6rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-bilheteria:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.btn-hero-eventos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 1.6rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-eventos:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.6);
}

/* SIMULATOR SECTION */
.simulator-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.simulator-card {
    padding: 2.5rem;
    background: rgba(17, 24, 39, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.simulator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sim-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.publico-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.publico-chips .chip {
    padding: 0.75rem 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.publico-chips .chip:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary);
}

.publico-chips .chip.active {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.sim-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.sim-result-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.sim-result-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.sim-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.sim-result-box h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.sim-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.sim-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

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

/* FASHION ERP WHITE LABEL SECTION */
.fashion-section {
    padding: 3rem 0 4rem;
    position: relative;
    z-index: 10;
}

.fashion-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 28px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 40px -15px rgba(168, 85, 247, 0.2);
}

.fashion-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.4);
}

.gradient-purple {
    background: linear-gradient(135deg, #c084fc, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fashion-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 1.2rem 0 2rem;
    line-height: 1.6;
}

.fashion-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.f-item i {
    font-size: 1.3rem;
    margin-top: 3px;
    background: rgba(168, 85, 247, 0.15);
    padding: 10px;
    border-radius: 10px;
}

.f-item div {
    display: flex;
    flex-direction: column;
}

.f-item strong {
    font-size: 0.98rem;
    color: #fff;
}

.f-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-purple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 1.8rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

.fashion-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
}

.fashion-stat-card i {
    font-size: 3.5rem;
    color: #c084fc;
    margin-bottom: 1rem;
}

.fashion-stat-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.4rem;
}

.fashion-stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pill-white-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 20px;
    color: #e9d5ff;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #60a5fa;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* FOOTER SECTION REESTRUTURADO */
.footer-section {
    background: #060911;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 5% 2.5rem;
    position: relative;
    z-index: 10;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.col-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.col-brand .footer-logo-img {
    height: 44px;
    width: auto;
    margin: 0;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.3rem;
    letter-spacing: -0.3px;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-text-sm {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.btn-footer-wpp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    background: var(--success);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-footer-wpp:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom .copyright {
    margin-top: 0;
    font-size: 0.82rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.text-emerald { color: #10b981; }
.text-purple { color: #a855f7; }
.text-yellow { color: #eab308; }

/* Mobile Rules for New Sections */
@media (max-width: 900px) {
    .sim-results-grid {
        grid-template-columns: 1fr;
    }

    .fashion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-bilheteria, .btn-hero-eventos {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .publico-chips {
        gap: 8px;
    }

    .publico-chips .chip {
        flex: 1 1 45%;
        padding: 0.6rem 0.8rem;
        font-size: 0.82rem;
    }

    .simulator-card {
        padding: 1.5rem;
    }

    .fashion-card {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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