@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ffd700;
    --primary-dark: #e6c200;
    --bg-main: #ffffff;
    --bg-alt: #f4f5f7;
    --bg-dark: #121212;
    --bg-dark-card: #1e1e1e;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #f4f4f4;
    --border-light: #e5e7eb;
    --border-dark: #333333;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

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

html {
    background-color: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mb-lg { margin-bottom: 3rem; }
.mt-lg { margin-top: 3rem; }

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
.section-title.light { color: var(--text-light); }

.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ffffff;
    width: 190px;
    height: 65px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    overflow: hidden;
    padding: 2px 6px;
}
.nav-logo img {
    height: 125px; /* Ajustado para não cortar o texto em cima e embaixo */
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}
.nav-logo:hover img {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-cta {
    background: var(--primary);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../imageFundo/caminhaoOlhoDeGato.jpeg') center/cover no-repeat;
    color: var(--text-light);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18,18,18,0.92) 0%, rgba(18,18,18,0.55) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 8rem;
    padding-bottom: 5rem;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}
.headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.headline .highlight { color: var(--primary); }
.subheadline {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
.cta-button i,
.cta-button svg { width: 20px; height: 20px; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.7);
}
.cta-button.secondary:hover {
    background: rgba(255,255,255,0.12);
}

.btn-gallery-toggle {
    background: var(--bg-alt);
    color: var(--text-dark);
    border: 1px solid var(--border-dark);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-gallery-toggle:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-gallery-toggle svg,
.btn-gallery-toggle i {
    width: 18px;
    height: 18px;
}

/* Clients Ribbon */
.clients-section {
    padding: 4rem 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
}
.clients-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.logo-ribbon {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.logo-ribbon::before, .logo-ribbon::after {
    content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.logo-ribbon::before { left: 0; background: linear-gradient(to right, white, transparent); }
.logo-ribbon::after { right: 0; background: linear-gradient(to left, white, transparent); }
.logo-track {
    display: inline-block;
    animation: scroll 35s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}
.logo-track img {
    display: inline-block;
    height: 70px;
    max-width: 190px;
    object-fit: contain;
    margin: 0 35px;
    vertical-align: middle;
    filter: opacity(0.85);
    transition: all 0.3s ease;
}
.logo-track img:hover { filter: opacity(1); transform: scale(1.05); }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-main);
}
.benefit-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.benefit-icon {
    color: var(--primary);
    width: 32px;
    height: 32px;
}
.benefit-card p {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-alt);
}
.problem-card {
    background: var(--bg-main);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.problem-icon {
    color: #e63946;
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
}
.problem-card p {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-main);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comparison-card { padding: 4rem 3rem; }
.comparison-card.light {
    background: var(--bg-alt);
    border-right: 1px solid var(--border-light);
}
.comparison-card.dark {
    background: var(--bg-dark);
    color: var(--text-light);
}
.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}
.comparison-list { list-style: none; }
.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}
.comparison-card.light li { color: var(--text-muted); }
.comparison-card.light i,
.comparison-card.light svg { color: #e63946; }
.comparison-card.dark li { font-weight: 500; }
.comparison-card.dark i,
.comparison-card.dark svg { color: var(--primary); }

/* Calculator Section */
.calculator-section {
    padding: 6rem 0;
    background: var(--bg-alt);
}
.calculator-wrapper {
    background: var(--bg-main);
    border-radius: 16px;
    padding: 3rem;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}
.calc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}
.calc-header h3 { font-size: 1.25rem; font-weight: 600; }
.calc-icon { color: var(--text-muted); }

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i,
.input-with-icon svg {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}
.input-with-icon input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.2s;
    background: var(--bg-alt);
}
.input-with-icon input:focus {
    border-color: var(--primary);
    background: var(--bg-main);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.results { margin-top: 2rem; }
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.result-row:not(:last-child) {
    border-bottom: 1px dashed var(--border-light);
}
.result-row.highlight {
    font-weight: 600;
    font-size: 1.125rem;
}
#economia-total {
    color: #10b981;
    font-size: 1.25rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-main);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.gallery-grid img.product-fit {
    object-fit: contain;
    background-color: #ffffff;
    padding: 16px;
    border: 1px solid var(--border-light);
    box-sizing: border-box;
}
.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Video Section */
.videos-section {
    padding: 6rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.video-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.1), 0 0 20px rgba(255, 215, 0, 0.15);
}
.video-thumbnail {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    transition: background 0.3s ease;
}
.video-card:hover .video-thumbnail::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
}
.video-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(17, 17, 17, 0.85);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    backdrop-filter: blur(4px);
}
.play-btn {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}
.play-btn svg {
    width: 24px;
    height: 24px;
    color: #111111;
    fill: #111111;
    margin-left: 3px;
}
.video-card:hover .play-btn {
    transform: scale(1.15);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}
.video-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.video-info {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.video-desc {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.video-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111111;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}
.video-action-btn svg {
    width: 18px;
    height: 18px;
}
.video-card:hover .video-action-btn {
    background: #ffd700;
    color: #111111;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--text-light);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}
.about-text p {
    color: #cccccc;
    font-size: 1.125rem;
}
.about-img img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-main);
}
.faq-container {
    max-width: 800px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
}
.faq-item.active .faq-question {
    color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: var(--text-light);
}
.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.cta-text {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Lightbox Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}
.modal.show {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    background: #ffffff;
    padding: 10px;
}
.modal.show .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.modal-close:hover {
    color: var(--primary);
}
.modal-caption {
    margin-top: 1.25rem;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
}

/* Video Modal Player */
.video-modal .video-modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    background: #000000;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-container {
    transform: scale(1);
}

.video-modal-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-card {
    cursor: pointer;
}

/* Footer */
.footer {
    padding: 3.5rem 0;
    background: #111111;
    color: #d4d4d4;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.footer-logo {
    width: 190px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    overflow: hidden;
    padding: 2px 6px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-logo:hover {
    transform: scale(1.02);
}
.footer-logo img {
    height: 125px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}
.footer-logo:hover img {
    transform: scale(1.05);
}
.footer p {
    margin: 0;
    padding: 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ==============================
   APP PAGE - COMPLETE SAAS LANDING PAGE
   ============================== */

body.app-page {
    background: #ffffff;
    color: #111111;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.app-page h1, .app-page h2, .app-page h3, .app-page h4 {
    font-family: 'Outfit', sans-serif;
}

/* App Navbar */
.app-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.app-navbar .nav-links a {
    color: #1d1d1d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.app-navbar .nav-links a:hover {
    color: #111111;
}

.app-navbar .nav-cta {
    background: #ffd700;
    color: #111111 !important;
    font-weight: 700 !important;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    transition: all 0.3s ease;
}

.app-navbar .nav-cta:hover {
    background: #f4c400;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
    color: #111111;
}

/* App Hero */
.app-hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-top {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    filter: blur(80px);
}

.glow-bottom {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
}

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

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 100px;
    padding: 5px 14px 5px 6px;
    margin-bottom: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08); 
    cursor: pointer;
}

.hero-pill:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.12);
}

.pill-tag {
    background: #ffd700;
    color: #111111;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.06em;
}

.pill-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111111;
    letter-spacing: 0.02em;
}

.pill-arrow {
    width: 14px;
    height: 14px;
    color: #ffd700;
    transition: transform 0.2s ease;
}

.hero-pill:hover .pill-arrow {
    transform: translateX(3px);
}

.app-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-text {
    background: linear-gradient(135deg, #111111 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-subheadline {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-app.primary {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.12);
}

.btn-app.primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.btn-app.secondary {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.btn-app.secondary:hover {
    background: #fffdf4;
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* Official Store Download Buttons */
.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    text-decoration: none;
    color: #111111;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.06);
}

.btn-store:hover {
    background: #fffdf5;
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.08), 0 0 15px rgba(255, 215, 0, 0.08);
}

.btn-store.google-play:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.08), 0 0 15px rgba(255, 215, 0, 0.12);
}

/* Enhanced OG 2.0 Badge & Card Styling */
.og2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}
.og2-badge i {
    color: #ffd700;
    width: 18px;
    height: 18px;
}
.og2-badge .badge-tag {
    background: #ffd700;
    color: #111111;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.og2-badge .badge-date {
    color: #ffd700;
    font-weight: 700;
}
.og2-badge .badge-tech {
    color: #e5e7eb;
    font-weight: 500;
}

.store-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.btn-store.google-play .store-icon {
    color: #111111;
}

.btn-store.app-store .store-icon {
    color: #111111;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}

.store-sub {
    font-size: 0.68rem;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.08em;
}

.store-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    font-family: 'Outfit', sans-serif;
}

.hero-store-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

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

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
    font-family: 'Outfit', sans-serif;
}

.stat-lbl {
    font-size: 0.8rem;
    color: #4b5563;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(17, 17, 17, 0.1);
}

/* Mockup Visual */
.app-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.mockup-wrapper {
    position: relative;
    z-index: 2;
    background: #1a1a1a;
    border-radius: 18px 18px 14px 14px;
    padding: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mockup-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 30%;
    height: 10px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 999px;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mockup-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 40%;
    height: 8px;
    background: linear-gradient(180deg, #252525 0%, #1a1a1a 100%);
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: 0.8;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #000000;
}

.hero-phone-img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    background: #000000;
    object-fit: contain;
    transform: none;
}

/* App Page Partner Logo Ribbon Fixes */
.app-page .logo-ribbon::before {
    background: linear-gradient(to right, #f5f5f1, transparent) !important;
}

.app-page .logo-ribbon::after {
    background: linear-gradient(to left, #f5f5f1, transparent) !important;
}

.app-page .logo-track img {
    filter: grayscale(1) opacity(0.75) !important;
    transition: all 0.3s ease;
}

.app-page .logo-track img:hover {
    filter: grayscale(0) opacity(1) !important;
    transform: scale(1.08);
}

/* Card Icon SVG Fixes */
.card-icon i, .card-icon svg,
.og2-feat i, .og2-feat svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    display: block;
}

/* Partners Section */
.app-partners-section {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.partners-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 2rem;
}

/* Section Header Common */
.section-header {
    margin-bottom: 4rem;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
}

.section-subtext {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* Dores & Soluções Section */
.dores-section {
    padding: 6rem 0;
    background: #fdfdfc;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.dores-grid {
    gap: 1.75rem;
}

.dor-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.dor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.dor-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1rem;
}

.dor-icon {
    width: 38px;
    height: 38px;
    background: #111111;
    color: #ffd700;
    padding: 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.dor-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

.dor-solucao {
    color: #4b5563;
    font-size: 0.96rem;
    line-height: 1.65;
}

.dor-solucao strong {
    color: #111111;
}

/* Bento Section */
.bento-section {
    padding: 7rem 0;
    background: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bento-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
    background: #ffffff;
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08), 0 0 20px rgba(255, 215, 0, 0.15);
}

.card-badge {
    align-self: flex-start;
    background: rgba(255, 215, 0, 0.15);
    color: #111111;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.card-large {
    grid-column: span 2;
}

.card-wide {
    grid-column: span 3;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #111111;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.85rem;
}

.bento-card p {
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.98rem;
}

.card-list {
    list-style: none;
    margin-top: 1.25rem;
    padding: 0;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.card-list i, .card-list svg {
    color: #111111;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* OG 2.0 Section */
.og2-section {
    padding: 6rem 0;
    background: #ffffff;
}

.og2-card {
    background: linear-gradient(135deg, #fffdfa 0%, #f7f7f3 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(17, 17, 17, 0.06);
}

.og2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.og2-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
    max-width: 650px;
}

.og2-content p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 680px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.og2-feat {
    display: flex;
    gap: 14px;
}

.og2-feat i {
    color: #ffd700;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.og2-feat h4 {
    font-size: 1.05rem;
    color: #111111;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.og2-feat p {
    font-size: 0.88rem;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.5;
}

/* FAQ Section */
.app-faq-section {
    padding: 7rem 0;
    background: #f5f5f1;
}

.faq-container {
    max-width: 900px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f3f3f0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.75rem;
    background: transparent;
    border: none;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.faq-icon {
    color: #111111;
    transition: transform 0.3s ease;
}

.faq-item.active {
    background: #ffffff;
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
}

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

.faq-answer {
    padding: 0 1.75rem 1.5rem 1.75rem;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Bottom CTA Banner */
.bottom-cta-section {
    position: relative;
    padding: 7rem 0;
    background: #ffffff;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-glow.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-glow.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
}

.cta-card.glass-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f3 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    padding: 4.5rem 3rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cta-card.glass-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #111111;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.75rem;
}

.cta-badge i, .cta-badge svg {
    width: 14px;
    height: 14px;
}

.cta-card h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.cta-card p {
    color: #4b5563;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-app.primary-cta {
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    padding: 0.82rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.12);
    transition: all 0.3s ease;
}

.btn-app.primary-cta:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(17, 17, 17, 0.18);
}

/* Responsive Styles for App Page */
@media (max-width: 1024px) {
    .app-hero {
        padding: 8rem 0 4rem 0;
    }

    .app-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .app-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .mockup-container {
        max-width: 520px;
    }

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

    .card-large, .card-wide {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-logo {
        width: 120px;
        height: 40px;
        flex-shrink: 0;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        display: none;
        z-index: 99;
        border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }

    .headline {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .app-headline {
        font-size: 2.6rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .og2-card {
        padding: 3rem 1.75rem;
    }

    .cta-card.glass-card {
        padding: 3rem 1.5rem;
    }

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

/* WhatsApp Interactive Simulation Section */
.sim-section {
    padding: 6rem 0;
    background: #0b0f17;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.sim-section .section-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.sim-section .section-heading {
    color: #ffffff;
}

.sim-section .section-subtext {
    color: #cbd5e1;
}

.sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.sim-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sim-tab-btn {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-tab-btn:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(4px);
}

.sim-tab-btn.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.12);
}

.sim-tab-btn .tab-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sim-tab-btn.active .tab-icon {
    background: #ffd700;
    color: #111111;
}

.sim-tab-btn h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.sim-tab-btn p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.45;
}

/* WhatsApp Mockup */
.whatsapp-mockup {
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 211, 102, 0.15);
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.wa-header {
    background: #202c33;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffd700;
    padding: 3px;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-info h5 {
    color: #e9edef;
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.wa-info span {
    color: #25d366;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.wa-status-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #25d366;
}

.wa-body {
    background-color: #0b141a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 16px 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 380px;
    transition: opacity 0.2s ease;
}

.wa-msg {
    max-width: 88%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wa-msg.bot {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.wa-msg.user {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.wa-time {
    font-size: 0.68rem;
    color: rgba(241, 241, 241, 0.65);
    float: right;
    margin-left: 10px;
    margin-top: 6px;
}

.wa-img-msg {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.wa-img-msg:hover {
    transform: scale(1.02);
}

.wa-ocr-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 215, 0, 0.5);
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 8px;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 992px) {
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .app-hero {
        padding: 6rem 0 2.5rem 0;
    }

    .app-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .app-hero-text,
    .app-hero-visual {
        width: 100%;
    }

    .app-headline {
        font-size: 2rem;
        line-height: 1.15;
    }

    .app-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-pill {
        margin-bottom: 1rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding-top: 0.75rem;
    }

    .stat-divider {
        display: none;
    }

    .app-hero-visual {
        padding: 0 1rem;
    }

    .mockup-container {
        max-width: 100%;
    }

    .mockup-wrapper {
        padding: 6px;
        border-radius: 14px;
    }

    .video-frame {
        width: 100%;
        height: auto;
    }

    .hero-phone-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transform: none;
    }

    .hero-store-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .btn-store,
    .btn-app {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        font-size: 0.95rem;
    }

    .bento-card {
        padding: 1.5rem 1rem;
    }

    .og2-card {
        padding: 2rem 1rem;
    }

    .og2-content h2 {
        font-size: 1.75rem;
    }

    .cta-card.glass-card {
        padding: 2rem 1rem;
    }

    .cta-card h2 {
        font-size: 1.7rem;
    }

    .cta-card p {
        font-size: 0.96rem;
        margin-bottom: 1.75rem;
    }

    /* Mobile Video Section & Modal Optimizations */
    .videos-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-info {
        padding: 1.25rem 1.25rem;
    }

    .video-title {
        font-size: 1.05rem;
    }

    .video-desc {
        font-size: 0.86rem;
        margin-bottom: 1rem;
    }

    .video-action-btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .video-modal {
        padding: 0.75rem;
    }

    .video-modal .modal-close {
        top: 12px;
        right: 18px;
        font-size: 34px;
        z-index: 10;
    }

    .video-modal .video-modal-container {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* ==========================================================================
   FLOATING AI CHATBOT WIDGET
   ========================================================================== */
.ai-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.chat-toggle-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    border: 2px solid #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-toggle-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
}

.chat-toggle-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-icon-close {
    display: none;
}

.chat-toggle-btn.active .chat-icon-open {
    display: none;
}

.chat-toggle-btn.active .chat-icon-close {
    display: block;
}

.chat-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% { transform: scale(0.95); opacity: 0.85; }
    50% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* Chat Popup Window */
.chat-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 520px;
    max-height: calc(100vh - 120px);
    background: linear-gradient(180deg, #11161d 0%, #0d1117 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-top: 3px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-window-header {
    background: #161c24;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffd700;
    padding: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-header-info h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.chat-status {
    color: #25d366;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.chat-status .status-dot {
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25d366;
}

.chat-header-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.chat-header-close:hover {
    color: #ffffff;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #0d1117;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 16px 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #0d1117;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

.chat-msg {
    max-width: 88%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
}

.bot-msg {
    background: #161c24;
    color: #f1f5f9;
    align-self: flex-start;
    border-radius: 4px 14px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #ffd700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.user-msg {
    background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    color: #111111;
    font-weight: 700;
    align-self: flex-end;
    border-radius: 14px 4px 14px 14px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

/* Quick Action Cards Grid */
.icon-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 10px;
    width: 100%;
}

.quick-card-btn {
    background: rgba(22, 28, 36, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 8px 2px 6px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.quick-icon-wrapper svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
}

.quick-card-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #cbd5e1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    transition: color 0.25s ease;
}

.quick-card-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 174, 0, 0.08) 100%);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.25);
}

.quick-card-btn:hover .quick-icon-wrapper {
    background: #ffd700;
    color: #111111;
    transform: scale(1.06);
}

.quick-card-btn:hover .quick-card-label {
    color: #ffffff;
}

.chat-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 700;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}

.chat-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* Typing Indicator */
.typing-msg {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
}

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

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Chat Input Area */
.chat-input-area {
    background: #161c24;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-area input {
    flex: 1;
    background: #0d1117;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s ease;
}

.chat-input-area input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    border: none;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    fill: #111111;
}

/* ==========================================================================
   PERFORMANCE & RENDERING OPTIMIZATIONS
   ========================================================================== */
.gallery-section,
.videos-section,
.faq-section,
.bento-section,
.dores-section,
.og2-section,
.sim-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}
