/* ============================ VARIÁVEIS GLOBAIS ============================ */
:root {
    --primary-gold: #D9A171;
    --primary-gold-dark: #B07A4F;
    --bg-dark: #050505;
    --surface: #121212;
    --surface-elevated: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #888888;
    --success-green: #2ecc71;
    --danger-red: #e74c3c;
    --gold-gradient: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    --glass-border: 1px solid rgba(217, 161, 113, 0.2);
}

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

/* BLINDAGEM ABSOLUTA E TEMA GLOBAL */
html, body {
    width: 100%;
    max-width: 100%; /* Trocamos 100vw por 100% para evitar o bug da barra */
    overflow-x: hidden !important;
    position: relative;
}

body {
    margin: 0;
    padding: 0;
  padding-top: 88px; /* reserva espaço para a navbar fixa */
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ============================ ANIMAÇÃO DE FUNDO ============================ */
.luxury-bg {
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background:
        radial-gradient(ellipse 65% 55% at 20% 30%, rgba(217,161,113,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 80% 70%, rgba(176,122,79,0.11) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 50% 15%, rgba(245,200,151,0.07) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 85%, rgba(217,161,113,0.09) 0%, transparent 50%),
        radial-gradient(ellipse 60% 45% at 85% 10%, rgba(176,122,79,0.10) 0%, transparent 50%);
    z-index: 0;
    animation: auroraMove 25s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform;
}

@keyframes auroraMove {
    0%   { transform: translate(0%,  0%)  scale(1);    }
    25%  { transform: translate(-3%, 4%)  scale(1.02); }
    50%  { transform: translate(-5%, 5%)  scale(1.05); }
    75%  { transform: translate(2%, -3%)  scale(1.03); }
    100% { transform: translate(5%, -5%)  scale(1.1);  }
}

/* ============================ EFEITO GLOW (CINESTÉSICO) ============================ */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 161, 113, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}

/* ============================ BARRA DE NAVEGAÇÃO ============================ */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    height: 65px;
    background: rgba(26, 26, 26, 0.4); 
    -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 25px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: all 0.3s ease; }
.nav-brand img { height: 32px; width: auto; transition: transform 0.3s ease; }
.nav-brand span { color: var(--text-light); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px; transition: color 0.3s ease; }
.nav-brand:hover span { color: var(--primary-gold); }
.nav-brand:hover img { transform: scale(1.05); }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: var(--text-light); font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-gold); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-login { color: var(--text-light); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.nav-login:hover { color: var(--primary-gold); }

.btn-nav-cta {
    background: var(--gold-gradient);
    color: #000;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(217, 161, 113, 0.4); }

.menu-mobile-icon { display: none; background: none; color: var(--text-light); border: none; font-size: 1.5rem; cursor: pointer; padding: 10px; }

.mobile-menu-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 15px;
    width: 250px;
    background: rgba(18, 18, 18, 0.95);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 161, 113, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    z-index: 9998;
}
.mobile-menu-dropdown.active { display: flex; animation: fadeInDownMenu 0.3s ease; }
.mobile-menu-dropdown a {
    padding: 15px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu-dropdown a:last-child { border-bottom: none; }
.mobile-menu-dropdown a:hover { color: var(--primary-gold); }
.mobile-menu-dropdown .mobile-login-link { color: var(--primary-gold); font-weight: 700; }

@keyframes fadeInDownMenu { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================ BUSCA GLOBAL ============================ */
.global-search-nav-btn {
    background: none; border: none; color: var(--text-light); cursor: pointer; transition: color 0.3s;
    display: flex; align-items: center; padding: 5px;
}
.global-search-nav-btn:hover { color: var(--primary-gold); }
.mobile-only-search { display: none; }

.global-search-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 10000; display: flex; align-items: flex-start; justify-content: center;
    padding-top: 10vh; pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}
.global-search-modal.active { pointer-events: all; opacity: 1; }
.global-search-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); z-index: 1;
}
.global-search-box {
    position: relative; z-index: 2; width: 90%; max-width: 600px;
    background: rgba(18, 18, 18, 0.95); border: 1px solid rgba(217, 161, 113, 0.3);
    border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(-20px); transition: transform 0.3s ease;
    display: flex; flex-direction: column;
}
.global-search-modal.active .global-search-box { transform: translateY(0); }
.global-search-header { display: flex; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.global-search-header svg { color: var(--primary-gold); margin-right: 1rem; flex-shrink: 0; }
.global-search-header input { flex-grow: 1; background: transparent; border: none; color: #fff; font-size: 1.1rem; font-family: 'DM Sans', sans-serif; outline: none; }
.close-search { background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; transition: color 0.3s; line-height: 1; }
.close-search:hover { color: var(--danger-red); }
.global-search-results { max-height: 60vh; overflow-y: auto; }
.global-search-results::-webkit-scrollbar { width: 6px; }
.global-search-results::-webkit-scrollbar-track { background: transparent; }
.global-search-results::-webkit-scrollbar-thumb { background-color: var(--primary-gold); border-radius: 10px; }
.search-result-item { display: block; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.02); transition: background 0.2s; text-decoration: none; }
.search-result-item:hover { background: rgba(217, 161, 113, 0.05); }
.search-result-title { font-family: 'DM Sans', sans-serif; color: var(--text-light); font-weight: 700; margin-bottom: 0.3rem; font-size: 1.05rem; }
.search-result-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.search-no-results { padding: 2rem; text-align: center; color: var(--text-muted); font-size: 0.95rem; }

/* ============================ NAVBAR MOBILE ============================ */
@media (max-width: 768px) {
    .glass-navbar { top: 10px; width: 95%; border-radius: 20px; padding: 0 15px; justify-content: center; }
    .nav-brand { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; width: max-content; }
    .nav-brand span { display: inline !important; font-size: 1.05rem !important; } 
    .nav-links, .nav-actions { display: none; }
    .menu-mobile-icon { display: block; position: absolute; right: 10px; }
        .mobile-only-search { display: flex; position: absolute; right: 54px; padding: 10px; }
        .glass-navbar:not(.no-mobile-menu) .nav-actions .global-search-nav-btn { display: none; }
}

/* ============================ TYPOGRAPHY & LAYOUT SHARED ============================ */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-light); margin-bottom: 1rem; }
.text-gold {
  background: linear-gradient(135deg, #D9A171 0%, #F5C897 30%, #E8A850 60%, #D9A171 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shift 5s ease-in-out infinite;
}
@keyframes gold-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

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

.inline-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
.inline-link:hover {
    color: var(--primary-gold-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

/* ============================ BUTTONS SHARED ============================ */
.btn { display: inline-block; padding: 1rem 2rem; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.15s ease-out; cursor: pointer; border: none; text-decoration: none; text-align: center; will-change: transform; }
.btn-primary { background: var(--gold-gradient); color: #000; box-shadow: 0 4px 15px rgba(217, 161, 113, 0.3); position: relative; overflow: hidden; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 161, 113, 0.5); }
.btn-primary::after { content: ''; position: absolute; top: 0; left: 0; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.32), transparent); animation: btn-shimmer 3s ease-in-out infinite; pointer-events: none; transform: translateX(-150%); will-change: transform; }
@keyframes btn-shimmer { 0% { transform: translateX(-150%); } 55%, 100% { transform: translateX(360%); } }
@media (prefers-reduced-motion: reduce) { .btn-primary::after { animation: none; } }
.btn-outline { background: transparent; color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.3); }

/* ============================ SECTIONS & GRIDS ============================ */
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.85rem; margin-bottom: 1rem; display: block; font-weight: 700; }
.section-header h2 { font-size: clamp(2.5rem, 4vw, 3.6rem); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ============================ BENTO GRID GLOBAL ============================ */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.bento-item { background: rgba(255, 255, 255, 0.05); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-start; z-index: 1; }
.bento-item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 180px; background: radial-gradient(circle at 50% -20%, rgba(217, 161, 113, 0.18), transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: -1; }
.bento-item:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.18); box-shadow: 0 18px 45px rgba(0,0,0,0.18); }
.bento-item:hover::before { opacity: 1; }
.bento-col-12 { grid-column: span 12; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }
.bento-col-4 { grid-column: span 4; }
.bento-row { display: flex; flex-direction: row; gap: 2.5rem; align-items: center; height: 100%; }
.bento-row > div { flex: 1; }
.bento-img-container { margin-top: 1.5rem; flex-grow: 1; display: flex; align-items: flex-end; justify-content: center; }
.bento-img-container img { width: 100%; max-height: 220px; object-fit: cover; object-position: top; border-radius: 12px; border: var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.3s; }
.bento-item:hover .bento-img-container img { transform: translateY(-3px); }
.bento-row .bento-img-container { margin-top: 0; height: 100%; align-items: center; }
.bento-row .bento-img-container img { max-height: 300px; }
.bento-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-gold); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.bento-title { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; font-family: 'Playfair Display', serif; line-height: 1.3; }
.bento-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
@media (max-width: 992px) {
    .bento-col-8, .bento-col-6, .bento-col-4 { grid-column: span 12; }
    .bento-row { flex-direction: column; }
}

/* ============================ HERO SHARED ============================ */
.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center; /* center content vertically in remaining viewport */
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% -10%, rgba(229, 190, 139, 0.09), transparent 35%), radial-gradient(circle at 30% 20%, rgba(217, 161, 113, 0.12), transparent 18%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 20%), var(--bg-dark);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body { padding-top: 70px; }
  .hero { min-height: calc(100vh - 70px); padding: 1rem; }
}

/* Mobile: empilhar hero e ajustar tamanhos */
@media (max-width: 768px) {
  .hero .container { display: flex; flex-direction: column; gap: 18px; align-items: stretch; }
  .hero .hero-content, .hero .hero-image { width: 100%; }
  .hero .hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .hero p { font-size: 1rem; margin-bottom: 1rem; }
  .hero-caption { font-size: 0.9rem; }
  .hero-video-wrap { max-width: 420px; margin: 0 auto; }
  .hero-video-frame { width: 100%; height: auto; }
  .hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .hero .hero-ctas { width: 100%; }
  .hero .btn { width: 100%; padding: 12px 16px; }
  .hero p { font-size: 0.95rem; }
}

/* Forçar comportamentos mobile finais (colocar ao fim para maior prioridade) */
@media (max-width: 768px) {
  section.hero .container { display: flex !important; flex-direction: column !important; gap: 14px !important; }
  section.hero .hero-content, section.hero .hero-image { width: 100% !important; }
  section.hero { align-items: center !important; padding-top: 1rem !important; padding-bottom: 2rem !important; }
  section.hero h1 { font-size: 1.9rem !important; line-height: 1.1 !important; max-width: 100% !important; }
  section.hero p { font-size: 1rem !important; max-width: 100% !important; }
  section.hero .hero-image { min-height: 180px !important; aspect-ratio: auto !important; }
  section.hero .hero-video-wrap { max-width: 420px !important; }
}

@media (max-width: 480px) {
  section.hero h1 { font-size: 1.4rem !important; }
  section.hero .hero-image { min-height: 140px !important; }
}
.hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.02; margin-bottom: 1.4rem; max-width: 720px; letter-spacing: -0.02em; }

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; line-height: 1.18; }
}
.hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 680px; margin: 0 auto 0.9rem; font-weight: 400; }
.hero.iris-layout .hero-content { display: grid; gap: 2rem; max-width: 720px; }
.hero.iris-layout .hero-ctas { justify-content: flex-start; }
.hero.iris-layout .trust-signals { justify-content: flex-start; }
.hero.iris-layout .hero-image { margin-top: 0; }

/* ============================ STATS SHARED ============================ */
.stats { background: rgba(18, 18, 18, 0.4); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-top: var(--glass-border); border-bottom: var(--glass-border); padding: 3rem 0; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary-gold); font-weight: 700; margin-bottom: 5px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500;}

/* ============================ CARDS SHARED ============================ */
.card { background: rgba(255, 255, 255, 0.05); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 2.5rem; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.18); overflow: hidden; z-index: 1; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 180px; background: radial-gradient(circle at 50% -20%, rgba(217, 161, 113, 0.12), transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: -1; }
.card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.2); }
.card:hover::before { opacity: 1; }
.card-icon { margin-bottom: 1.5rem; color: var(--primary-gold); line-height: 0; }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #fff; font-family: 'Playfair Display', serif; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

/* ============================ TESTIMONIAL CAROUSEL ============================ */
.testimonials-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 2rem; padding: 1rem 0 2rem 0; }
.testimonials-carousel::-webkit-scrollbar { height: 6px; }
.testimonials-carousel::-webkit-scrollbar-track { background: var(--surface-elevated); border-radius: 10px; }
.testimonials-carousel::-webkit-scrollbar-thumb { background-color: var(--primary-gold); border-radius: 10px; }
.testimonials-carousel .card { flex: 0 0 380px !important; width: 380px !important; max-width: 85vw !important; scroll-snap-align: center; white-space: normal; display: flex; flex-direction: column; justify-content: space-between; }

/* ============================ FOOTER ============================ */
footer { padding: 4rem 0 2rem; background: rgba(5, 5, 5, 0.8); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); position: relative; z-index: 1; border-top: var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-links h4 { color: var(--text-light); font-size: 1rem; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-gold); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* Adicionado para quebra de linha */
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 161, 113, 0.3);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* ============================ BACK TO TOP ============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(217, 161, 113, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 161, 113, 0.6);
}

/* ============================ FLOATING BAR MOBILE ============================ */
.mobile-floating-bar { display: none; }

/* ============================ RESPONSIVE SHARED ============================ */
@media (max-width: 1024px) {
    .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .hero { padding-top: 4rem; padding-bottom: 2rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; margin-bottom: 0.8rem; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header { margin-bottom: 2.5rem; }
    .footer-grid > div:first-child { display: flex; flex-direction: column; align-items: center; } /* Centraliza o conteúdo da primeira coluna do footer */
    .social-links { justify-content: center; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .card { padding: 1.5rem; }
    .stat-value { font-size: 1.8rem; }
    .testimonials-carousel .card { flex: 0 0 85vw !important; }
    .mobile-floating-bar { display: flex !important; position: fixed; bottom: 0; left: 0; right: 0; width: 100%; background: rgba(12, 12, 12, 0.96) !important; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid rgba(217, 161, 113, 0.35); padding: 0.8rem 1.2rem; padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px)); justify-content: space-between; align-items: center; z-index: 10000; box-sizing: border-box; }
    .mobile-floating-bar .floating-info { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
    .mobile-floating-bar .btn { display: inline-block !important; margin: 0 !important; padding: 0.7rem 1.5rem !important; font-size: 0.85rem !important; font-weight: bold !important; white-space: nowrap !important; background: var(--gold-gradient) !important; color: #000 !important; border: none !important; box-shadow: 0 0 15px rgba(217, 161, 113, 0.5) !important; border-radius: 30px !important; text-decoration: none; }
    .back-to-top { bottom: 90px; right: 15px; width: 44px; height: 44px; }
}

/* ============================ CSS EXTRAÍDO DE INDEX.HTML & IRIS.HTML ============================ */
.badge { background: rgba(217, 161, 113, 0.1); color: var(--primary-gold); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; border: 1px solid rgba(217, 161, 113, 0.3); display: inline-flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 2rem; text-decoration: none; transition: all 0.3s ease; }
.badge:hover { background: rgba(217, 161, 113, 0.2); }
.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; align-items: center; margin-bottom: 1rem; }
.hero-ctas .btn { padding: 14px 28px; }
.trust-signals { display: flex; justify-content: center; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; margin: 6px 0 1.2rem; }
.trust-signals span { display: inline-flex; align-items: center; gap: 6px; }
.hero-image { width: 100%; max-width: 1000px; margin: 0 auto; border-radius: 24px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); aspect-ratio: 16 / 9; min-height: 240px; margin-top: -36px; }
.hero-image video { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.55); border: 1px solid rgba(217, 161, 113, 0.18); }
.feature-row { margin-bottom: 6rem; }
@media (min-width: 769px) {
    .feature-row:nth-child(odd) .grid-2 { display: flex; flex-direction: row-reverse; }
    .feature-row:nth-child(odd) .grid-2 > div { width: 50%; flex: 1; }
}
.feature-image { background: rgba(26, 26, 26, 0.4); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); height: auto; border-radius: 8px; border: var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); padding: 10px; }
.feature-highlights { list-style: none; margin: 1rem 0 1.5rem; }
.feature-highlights li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.feature-highlights li::before { content: '✓'; color: var(--primary-gold); }
.step-number { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(217, 161, 113, 0.2); line-height: 1; margin-bottom: 1rem; }
.pricing-section { padding: 100px 0; background: transparent; position: relative; z-index: 1; font-family: 'DM Sans', sans-serif; }
.pricing-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-title { font-size: 2.8rem; color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 15px; }
.pricing-subtitle { color: #d9a171; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: rgba(18, 18, 18, 0.65); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: var(--glass-border); padding: 40px 25px; border-radius: 16px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.price-card:hover { border-color: rgba(217,161,113,0.5); transform: translateY(-5px); }
.price-card.highlight { border: 2px solid #d9a171; background: rgba(217, 161, 113, 0.1); -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px); transform: scale(1.03); z-index: 2; box-shadow: 0 15px 40px rgba(217,161,113,0.15); }
.price-card.highlight:hover { transform: scale(1.05); }
.badge-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #d9a171; color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; white-space: nowrap; }
.plan-name { color: #fff; font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
.plan-desc { color: #888; font-size: 0.85rem; margin-bottom: 20px; line-height: 1.4; min-height: 40px; }
.plan-price { font-size: 2.5rem; color: #d9a171; font-weight: 700; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.plan-price span { font-size: 1rem; color: #888; font-weight: 400; font-family: 'DM Sans', sans-serif; }
.plan-annual { color: #00b87c; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; }
.plan-savings { color: #d9a171; font-size: 0.8rem; margin-bottom: 25px; font-weight: 500; }
.setup-bonus { background: rgba(217,161,113,0.1); border: 1px dashed #d9a171; color: #d9a171; padding: 8px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; margin-bottom: 25px; text-align: center; }
.feature-list { list-style: none; padding: 0; margin: 0 0 30px 0; flex-grow: 1; }
.feature-list li { color: #aaa; font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.feature-list li.highlight-feat { color: #fff; font-weight: 600; }
.btn-plan { display: block; width: 100%; padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.btn-solid { background: #d9a171; color: #000; border: 1px solid #d9a171; }
.btn-solid:hover { background: #c28c5e; }
.stars { color: var(--primary-gold); margin-bottom: 1rem; letter-spacing: 2px; }
.author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.author-avatar { width: 50px; height: 50px; background: var(--surface-elevated); border-radius: 50%; object-fit: cover; }
.author-info h4 { margin-bottom: 0; font-size: 1rem; font-family: 'DM Sans', sans-serif; }
.author-info p { font-size: 0.8rem; color: var(--primary-gold); margin: 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.comp-col { background: rgba(26, 26, 26, 0.5); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: 1.5rem; }
.comp-col h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; color: var(--text-light) !important; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.comp-col p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
.comp-col p strong { color: var(--text-light); }
details { background: rgba(18, 18, 18, 0.6); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); margin-bottom: 1rem; border-radius: 8px; border: var(--glass-border); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
summary { padding: 1.5rem; cursor: pointer; font-weight: 500; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
summary::after { content: '+'; color: var(--primary-gold); font-size: 1.5rem; transition: transform 0.3s; }
details[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); }
details[open] summary ~ * { animation: abrirSuave 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes abrirSuave { 0% { opacity: 0; transform: translateY(-15px); } 100% { opacity: 1; transform: translateY(0); } }
.final-cta { text-align: center; background: rgba(18, 18, 18, 0.4); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-top: var(--glass-border); border-bottom: var(--glass-border); position: relative; z-index: 1; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
.hero.iris-layout .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; text-align: left; }
.hero-content .hero-ctas, .hero-content .trust-signals { justify-content: flex-start; }
.hero-content p { margin-left: 0; margin-right: 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(217, 161, 113, 0.08); color: var(--secondary-gold); padding: 9px 22px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px; border: 1px solid rgba(217, 161, 113, 0.15); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
.iris-pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary-gold); box-shadow: 0 0 0 6px rgba(217, 161, 113, 0.12); }
.video-container { display: flex; justify-content: center; align-items: center; position: relative; width: 100%; max-width: 300px; margin: 0 auto; }
.video-glow { position: absolute; width: 85%; height: 85%; border-radius: 20px; box-shadow: 0 0 80px rgba(217, 161, 113, 0.2); animation: pulse-gold 3s infinite alternate; }
.iris-video { width: 100%; max-width: 300px; height: auto; border-radius: 20px; box-shadow: 0 0 40px rgba(0,0,0,0.5); position: relative; z-index: 2; border: 1px solid rgba(217,161,113,0.1); }
.steps { padding: 100px 0; background: transparent; position: relative; z-index: 1; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; margin-top: 50px; }
.author-avatar-top { width: 70px; height: 70px; background: #222; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-gold); margin-bottom: 1rem; }
.stars-top { color: var(--primary-gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.05rem; font-style: italic; line-height: 1.6; color: #ddd; margin-bottom: 1.5rem; flex-grow: 1; }
.author-info-bottom h4 { font-size: 1.1rem; color: var(--primary-gold); margin-bottom: 5px; }
.author-info-bottom span { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.lead-section { padding: 120px 0; background: transparent; position: relative; z-index: 1; border-top: var(--glass-border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.form-input { width: 100%; padding: 16px 25px; background: rgba(0,0,0,0.3); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; color: #fff; margin-bottom: 15px; font-size: 1rem; outline: none; transition: 0.3s; }
.form-input:focus { border-color: var(--primary-gold); background: rgba(0,0,0,0.6); }
.form-submit { width: 100%; padding: 18px; background: var(--primary-gold); color: #000; border: none; border-radius: 30px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.form-submit:hover { background: #c28c5e; transform: scale(1.02); }
.faq { padding: 100px 0; background: transparent; position: relative; z-index: 1; border-top: var(--glass-border); }
.faq-item { margin-bottom: 20px; background: #111; padding: 25px; border-radius: 12px; border-left: 3px solid var(--primary-gold); }
@keyframes pulse-gold { 0% { box-shadow: 0 0 80px rgba(217, 161, 113, 0.15); transform: scale(1); } 100% { box-shadow: 0 0 100px rgba(217, 161, 113, 0.3); transform: scale(1.02); } }
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .price-card.highlight { transform: scale(1); }
    .price-card.highlight:hover { transform: translateY(-5px); }
}
@media (max-width: 992px) { 
    .hero.iris-layout .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content .hero-ctas, .hero-content .trust-signals { justify-content: center; }
    .step-grid { grid-template-columns: 1fr; } 
}
@media (max-width: 768px) {
    .hero-ctas { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-ctas .btn { width: 100%; text-align: center; box-sizing: border-box; }
    .final-cta h2 { font-size: 1.8rem; }
    .final-cta .btn { margin-right: 0; width: 100%; box-sizing: border-box; }
    .trust-signals { flex-direction: column; gap: 0.5rem; align-items: center; }
    .feature-row { margin-bottom: 4rem; }
    .feature-image { height: auto; padding: 1rem; }
    .comparison-grid { grid-template-columns: 1fr; gap: 1rem; }
    .step-number { font-size: 3rem; margin-bottom: 0.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .video-container, .iris-video { max-width: 240px; }
    .form-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    body:has(.mobile-floating-bar) { padding-bottom: 90px !important; }
}

/* ============================ CSS EXTRAÍDO DE OBRIGADO.HTML ============================ */
.section-bordered { position: relative; z-index: 1; border-top: var(--glass-border); }
.section-muted { background: rgba(18, 18, 18, 0.4); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.hero-caption { margin-top: 12px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.hero-niche-links { margin-bottom: 40px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; color: var(--primary-gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-video-wrap { position: relative; width: 100%; max-width: 800px; margin: 0 auto; }
.hero-video-frame { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); border: 1px solid rgba(217, 161, 113, 0.2); }

/* ── Hero com pessoa + vídeo empilhados ── */
.hero-image:has(.hero-visual) { aspect-ratio: unset; min-height: unset; background: transparent; border-radius: 0; display: block; margin-top: 0; }
.hero-visual { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.hero-person-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center center; border-radius: 18px; display: block; box-shadow: 0 16px 40px rgba(0,0,0,0.55); border: 1px solid rgba(217,161,113,0.18); }
.hero-visual .hero-video-frame { width: 100%; height: auto; border-radius: 18px; display: block; box-shadow: 0 12px 32px rgba(0,0,0,0.5); border: 1px solid rgba(217,161,113,0.18); }
.hero-video-label { display: block; font-size: 0.72rem; font-weight: 700; color: rgba(217,161,113,0.55); text-transform: uppercase; letter-spacing: 1.8px; margin-top: 4px; }
@media (max-width: 992px) { .hero-visual { gap: 10px; } }
@media (max-width: 768px) { .hero-person-img { aspect-ratio: 4 / 3; } }

.feature-img-small { max-height: 180px; }
.section-inner { max-width: 800px; margin: 0 auto; }
.align-center { align-items: center; }
.about-hero-img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: var(--glass-border); }
.about-heading { color: var(--primary-gold); margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif; }
.about-copy { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-quote { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(217, 161, 113, 0.2); }
.about-quote-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-light); font-style: italic; }
.about-quote-author { color: var(--primary-gold); font-size: 0.9rem; margin-top: 0.5rem; font-weight: bold; text-transform: uppercase; }
.about-cta { margin-top: 2.5rem; }
.about-cta .btn { font-size: 0.95rem; padding: 1rem 2rem; }
.stats-heading { text-align: center; color: var(--text-muted); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; }
.stats-subtitle { color: #d9a171; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; text-align: center; }
.final-cta-copy { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.final-cta-copy--spaced { color: var(--text-muted); font-size: 0.9rem; margin-top: 1.5rem; }
.final-cta-copy--spaced svg { vertical-align: -2px; }
.final-cta-button-spaced { margin-right: 1rem; }
.text-highlight { color: #d9a171; }
.feature-card-title { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; }
.feature-card-text { color: var(--text-muted); font-size: 0.9rem; }
.hidden-element { display: none !important; visibility: hidden !important; }
.mobile-bar-note { font-size: 0.75rem; color: var(--text-muted); }
.mobile-bar-price { font-size: 1.3rem; font-weight: bold; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.section-bordered.contact-section { padding: 80px 0; position: relative; z-index: 1; border-top: var(--glass-border); }
.contact-intro h2 { font-size: 2rem; margin-bottom: 10px; }
.section-heading { margin-top: 0; margin-bottom: 25px; font-size: 1.5rem; }
.form-label { display: block; font-size: 0.85rem; color: #aaa; margin-bottom: 5px; }
.form-checkbox { margin-top: 4px; cursor: pointer; }
.form-checkbox-label { font-size: 0.85rem; color: #aaa; line-height: 1.4; cursor: pointer; }
.text-link { color: #d9a171; text-decoration: underline; }
.stats-title { text-align: center; color: var(--text-muted); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; }
.stats-subtitle { color: #d9a171; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; text-align: center; }
.icon-small { width: 20px; height: 20px; border-radius: 4px; }
.feature-link-btn { font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; display: inline-block; }
.bento-img-center { align-items: center; }
.step-heading { font-family: 'DM Sans', sans-serif; font-size: 1.2rem; margin-bottom: 0.75rem; }
.step-copy { color: var(--text-muted); font-size: 0.9rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; align-items: flex-start; }
.contact-intro h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-intro p { color: #aaa; margin-bottom: 30px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-card { background: rgba(26, 26, 26, 0.85); padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); border-left: 4px solid #d9a171; display: flex; gap: 15px; align-items: flex-start; }
.benefit-icon { color: var(--primary-gold); }
.benefit-icon svg { display: block; }
.benefit-card h4 { margin: 0 0 5px 0; color: #fff; }
.benefit-card p { margin: 0; font-size: 0.9rem; color: #aaa; }
.contact-box { background: rgba(18, 18, 18, 0.65); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 40px; border-radius: 16px; border: var(--glass-border); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.form-stack { display: flex; flex-direction: column; gap: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-input { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: inherit; outline: none; }
.form-input:focus { border-color: var(--primary-gold); background: rgba(0,0,0,0.6); }
.form-checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-top: 5px; }
.form-checkbox-label { font-size: 0.85rem; color: #aaa; line-height: 1.4; cursor: pointer; }
.form-checkbox-label a { color: #d9a171; text-decoration: underline; }
.form-submit { margin-top: 10px; padding: 15px; background: #d9a171; color: #000; border: none; border-radius: 8px; font-weight: 800; font-size: 1rem; cursor: pointer; transition: 0.3s; width: 100%; }
.form-submit:hover { background: #c28c5e; }
.quote-block { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(217, 161, 113, 0.2); }
.quote-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-light); font-style: italic; }
.quote-author { color: var(--primary-gold); font-size: 0.9rem; margin-top: 0.5rem; font-weight: bold; text-transform: uppercase; }
.contact-cta-link { font-size: 0.95rem; padding: 1rem 2rem; }
.success-actions { display: flex; flex-direction: column; gap: 12px; }
.form-guarantee { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .73rem; color: rgba(255,255,255,0.30); margin-top: 6px; }
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr !important; gap: 32px; }
    .contact-list { text-align: left; }
}
.success-link { background: #25d366; color: #fff; padding: 15px; border-radius: 10px; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; }
.success-close-btn { background: transparent; color: #888; border: 1px solid #333; padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10, 10, 10, 0.95); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-top: 1px solid rgba(212, 175, 55, 0.3); padding: 20px 0; z-index: 9999; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); font-family: 'DM Sans', sans-serif; }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.cookie-content p { color: #e0e0e0; font-size: 14px; font-weight: 300; max-width: 60%; line-height: 1.5; }
.cookie-content p strong { color: var(--primary-gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 15px; align-items: center; }
.btn-cookie-accept { background: linear-gradient(45deg, var(--primary-gold-dark), var(--primary-gold)); color: #000; border: none; padding: 12px 25px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; }
.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(217,161,113,0.4); }
.btn-cookie-settings { color: var(--primary-gold); text-decoration: none; font-size: 13px; font-weight: 600; border-bottom: 1px solid transparent; transition: border 0.3s ease; }
.btn-cookie-settings:hover { border-bottom: 1px solid var(--primary-gold); }
@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 20px; }
    .cookie-content p { max-width: 100%; }
}

.obrigado-page {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    height: 100vh;
}

.obrigado-page .thanks-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    background: rgba(18, 18, 18, 0.75);
    -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: obrigadoFadeInUp 0.8s ease-out;
}

@keyframes obrigadoFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.obrigado-page .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--success-green);
    animation: obrigadoScaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s backwards;
}

@keyframes obrigadoScaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.obrigado-page .thanks-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.obrigado-page .thanks-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }
.obrigado-page .sla-badge { display: inline-block; background: rgba(217, 161, 113, 0.1); color: var(--primary-gold); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 2rem; border: 1px solid rgba(217, 161, 113, 0.2); }
.obrigado-page .actions { display: flex; flex-direction: column; gap: 12px; }
.obrigado-page .actions .btn { padding: 1rem; border-radius: 12px; font-size: 0.9rem; }


/* ============================ NOVO MODAL OBRIGADO ============================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-overlay .thanks-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--primary-gold);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: obrigadoFadeInUp 0.5s ease-out;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-gold);
}

@media (max-width: 480px) {
    .modal-overlay .thanks-card h1 { font-size: 2rem; }
    .modal-overlay .thanks-card { padding: 2.5rem 1.5rem; }
}

/* ============================ MODAL DE SUCESSO (OBRIGADO) ============================ */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}

.success-modal-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    background: var(--surface);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    animation: obrigadoFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal .success-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--success-green);
    font-size: 2rem;
}

.success-modal h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-modal p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-close-modal {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

/* ============================ ARTIGOS: LAYOUT E TIPOGRAFIA ============================ */
.article-container { max-width: 800px; margin: 0 auto; padding: 0 20px; width: 100%; position: relative; z-index: 1; }
.article-hero { padding: 140px 0 40px; text-align: center; }
.article-category { color: var(--primary-gold); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; display: inline-block; }
.article-title { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: #fff; line-height: 1.2; margin-bottom: 1.5rem; }
.article-subtitle { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.article-meta { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--primary-gold); margin-bottom: 3rem; font-weight: 600; letter-spacing: 0.5px; }
.article-cover { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); border: var(--glass-border); margin-bottom: 3rem; }

.article-content { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: #E0E0E0; line-height: 1.8; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary-gold); margin: 3rem 0 1.5rem; line-height: 1.3; }
.article-content p { margin-bottom: 1.5rem; }
.article-content strong { color: #fff; }
.article-list { margin-bottom: 1.5rem; padding-left: 1.5rem; color: #E0E0E0; }
.article-list li { margin-bottom: 0.5rem; }

.cta-banner { background: linear-gradient(145deg, rgba(26,26,26,0.8), rgba(18,18,18,0.9)); border: 1px solid rgba(217,161,113,0.3); border-radius: 16px; padding: 3.5rem 2rem; text-align: center; margin: 5rem 0 3rem; box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.cta-banner h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-cta { display: inline-block; background: var(--gold-gradient); color: #000; padding: 1rem 2rem; border-radius: 8px; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(217, 161, 113, 0.3); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 161, 113, 0.5); }
.btn-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 4rem; transition: color 0.3s; }
.btn-back:hover { color: var(--primary-gold); }

.related-articles { margin: 2rem 0 4rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3rem; }
.related-articles h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 2rem; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.related-card { background: rgba(18, 18, 18, 0.75); -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px); border: var(--glass-border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; text-decoration: none; }
.related-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.related-img { width: 100%; height: 160px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); }
.related-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.related-tag { color: var(--primary-gold); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.related-title { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; line-height: 1.4; font-weight: 700; }
.related-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
    .article-hero { padding: 110px 0 30px; }
    .article-title { font-size: 2.2rem; }
    .article-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .article-meta { font-size: 0.8rem; margin-bottom: 2rem; }
    .article-content h2 { font-size: 1.8rem; }
    .article-content { font-size: 1.05rem; }
    .cta-banner { padding: 2.5rem 1.5rem; margin: 4rem 0 2rem; }
    .cta-banner h3 { font-size: 1.8rem; }
    .related-grid { grid-template-columns: 1fr; }
    .related-articles h3 { font-size: 1.5rem; }
}

/* ============================ ARTIGOS: INTERAÇÕES (COMENTÁRIOS E COMPARTILHAMENTO) ============================ */
.article-interactions-wrapper {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(217, 161, 113, 0.2);
    font-family: 'DM Sans', sans-serif;
}
.article-actions-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}
.btn-article-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-article-action:hover {
    background: rgba(217, 161, 113, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 161, 113, 0.15);
}
.btn-article-action.liked {
    color: var(--danger-red);
    border-color: rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.1);
}
.article-comments-section {
    background: rgba(18, 18, 18, 0.65);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    border: var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.article-comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}
.article-comment-form { display: flex; flex-direction: column; gap: 15px; margin-bottom: 3rem; }
.article-comment-form input,
.article-comment-form textarea { 
    width: 100%; 
    background: rgba(0, 0, 0, 0.4); 
    -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 16px 20px; 
    border-radius: 12px; 
    color: #fff; 
    font-family: inherit; 
    font-size: 1rem;
    outline: none; 
    transition: 0.3s;
    resize: vertical;
    min-height: 120px;
}
.article-comment-form input:focus,
.article-comment-form textarea:focus { 
    border-color: var(--primary-gold); 
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(217, 161, 113, 0.1);
}
.article-comment-form button { 
    align-self: flex-end;
    background: var(--gold-gradient); 
    color: #000; 
    border: none; 
    padding: 12px 35px; 
    border-radius: 30px; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer; 
    transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(217, 161, 113, 0.3);
}
.article-comment-form button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(217, 161, 113, 0.5); 
}
.article-comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: transparent;
    border: none;
    padding: 0;
}
.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--surface-elevated);
    flex-shrink: 0;
}
.comment-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.comment-header-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 6px;
    word-break: break-word;
}
.comment-header-text strong {
    color: #fff;
    font-weight: 700;
    margin-right: 5px;
}
.comment-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.comment-time {
    color: var(--text-muted);
}
.comment-action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s;
}
.comment-action-btn:hover {
    color: var(--text-light);
}
.comment-like-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}
.comment-heart-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: transform 0.2s;
    padding: 5px;
}
.comment-heart-btn:hover {
    transform: scale(1.2);
}
.comment-heart-btn.liked {
    color: var(--danger-red);
}
@media (max-width: 768px) {
    .article-comments-section { padding: 20px; }
    .article-comment-form button { align-self: stretch; padding: 15px; }
    .article-actions-bar { flex-direction: column; }
    .article-actions-bar { flex-direction: row; justify-content: flex-start; gap: 10px; margin-bottom: 1.5rem; }
    .btn-article-action { padding: 8px 14px; font-size: 0.8rem; }
}

/* =========================================================
   NOVOS COMPONENTES — 21st.dev inspired (vanilla)
   ========================================================= */

/* ── Marquee Strip ── */
.marquee-strip {
    overflow: hidden; padding: 13px 0;
    background: rgba(14,14,14,0.6);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
    position: relative; z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 38s linear infinite; }
.marquee-item {
    display: flex; align-items: center; gap: 10px;
    padding: 0 32px;
    color: rgba(217,161,113,0.6);
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.marquee-dot { color: rgba(217,161,113,0.25); font-size: 0.55rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-play-state: paused; } }

/* ── Word Reveal ── */
.word-unit {
    display: inline-block;
    opacity: 0; transform: translateY(18px); filter: blur(4px);
    transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}
.word-unit.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Typewriter cursor ── */
#typewriter-niche {
    border-right: 2px solid #D9A171;
    padding-right: 2px;
    animation: tw-cursor 1s step-end infinite;
}
@keyframes tw-cursor { 0%,100% { border-color: #D9A171; } 50% { border-color: transparent; } }

/* ── Live Notification Feed (Íris) ── */
.iris-live-section { padding: 80px 0; position: relative; z-index: 1; border-top: var(--glass-border); }
.iris-live-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 960px; margin: 0 auto;
}
.iris-notif-panel {
    background: rgba(10,10,10,0.92);
    border: var(--glass-border); border-radius: 16px;
    overflow: hidden; box-shadow: 0 24px 56px rgba(0,0,0,0.65);
    font-family: 'DM Sans', sans-serif;
}
.iris-notif-header {
    background: rgba(217,161,113,0.07); border-bottom: var(--glass-border);
    padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.iris-notif-header img { width: 22px; height: 22px; border-radius: 5px; }
.iris-notif-header .notif-title { font-size: 0.78rem; font-weight: 700; color: #D9A171; text-transform: uppercase; letter-spacing: 1px; flex: 1; }
.iris-notif-dots { display: flex; gap: 5px; }
.iris-notif-dots span { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.nd-r { background: #ff5f57; } .nd-y { background: #febc2e; } .nd-g { background: #28c840; }
.iris-notif-list { padding: 10px; display: flex; flex-direction: column; gap: 7px; min-height: 300px; }
.iris-notif-item {
    display: flex; gap: 11px; align-items: flex-start;
    background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.055);
    border-radius: 10px; padding: 11px 13px;
    opacity: 0; transform: translateY(-10px) scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.iris-notif-item.notif-show { opacity: 1; transform: translateY(0) scale(1); }
.notif-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.notif-body { flex: 1; }
.notif-title-text { font-size: 0.8rem; font-weight: 700; color: #fff; margin-bottom: 2px; line-height: 1.3; }
.notif-sub { font-size: 0.72rem; color: rgba(255,255,255,0.42); line-height: 1.4; }
.notif-badge {
    display: inline-block; font-size: 0.62rem; font-weight: 800;
    padding: 2px 7px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: 5px;
}
.nb-warn { background: rgba(245,158,11,0.14); color: #F59E0B; border: 1px solid rgba(245,158,11,0.28); }
.nb-info { background: rgba(59,130,246,0.11); color: #60A5FA; border: 1px solid rgba(59,130,246,0.24); }
.nb-ok   { background: rgba(16,185,129,0.11); color: #34D399; border: 1px solid rgba(16,185,129,0.24); }
.nb-hot  { background: rgba(239,68,68,0.11);  color: #F87171;  border: 1px solid rgba(239,68,68,0.24); }
.iris-live-text h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #fff; margin-bottom: 1rem; line-height: 1.25; }
.iris-live-text p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 1rem; }
.iris-live-text .iris-live-tags { display: flex; flex-direction: column; gap: 8px; margin-top: 1.5rem; }
.iris-live-tag {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.87rem; color: rgba(255,255,255,0.75); font-weight: 500;
}
.iris-live-tag::before { content: '✦'; color: #D9A171; font-size: 0.65rem; flex-shrink: 0; }
@media (max-width: 768px) {
    .iris-live-grid { grid-template-columns: 1fr; gap: 32px; }
    .iris-notif-list { min-height: 240px; }
}

/* ── Animated Testimonials ── */
.testimonial-new { display: grid; grid-template-columns: 5fr 7fr; gap: 52px; align-items: start; }
.testimonial-photo-stack { position: relative; height: 400px; border-radius: 20px; }
.testimonial-photo-item {
    position: absolute; inset: 0; border-radius: 20px; overflow: hidden;
    opacity: 0; transform: scale(0.93) rotateY(6deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 24px 56px rgba(0,0,0,0.7); border: var(--glass-border);
}
.testimonial-photo-item.t-active { opacity: 1; transform: scale(1) rotateY(0deg); }
.testimonial-photo-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) contrast(1.08); display: block; }
.t-photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.t-photo-name { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.2; }
.t-photo-role { font-size: 0.78rem; color: #D9A171; font-weight: 600; margin-top: 3px; }
.testimonial-text-panel { position: relative; min-height: 260px; margin-bottom: 32px; }
.testimonial-text-item {
    position: absolute; inset: 0;
    opacity: 0; transform: translateX(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}
.testimonial-text-item.t-active {
    opacity: 1; transform: translateX(0);
    position: relative; pointer-events: auto;
}
.t-stars { color: #D9A171; font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.t-quote {
    font-size: 1.08rem; color: rgba(255,255,255,0.88);
    line-height: 1.78; font-style: italic;
}
.t-quote::before { content: '\201C'; color: #D9A171; font-size: 2.2rem; line-height: 0; vertical-align: -0.45em; margin-right: 3px; font-style: normal; }
.testimonial-nav-row { display: flex; gap: 12px; align-items: center; }
.t-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(217,161,113,0.09); border: 1px solid rgba(217,161,113,0.24);
    color: #D9A171; font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; line-height: 1;
}
.t-nav-btn:hover { background: #D9A171; color: #000; border-color: #D9A171; }
.t-dots { display: flex; gap: 7px; margin: 0 6px; }
.t-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(217,161,113,0.22); transition: all 0.35s ease; cursor: pointer;
}
.t-dot.t-active { background: #D9A171; width: 22px; border-radius: 3px; }
@media (max-width: 768px) {
    .testimonial-new { grid-template-columns: 1fr; gap: 28px; }
    .testimonial-photo-stack { height: 260px; }
    .testimonial-text-panel { min-height: 0; }
    .testimonial-text-item { position: relative; inset: auto; transform: none; }
    .testimonial-text-item:not(.t-active) { display: none; }
}

/* ── Comparison Table Visual ── */
.comparison-visual {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 16px; overflow: hidden;
    border: var(--glass-border);
    box-shadow: 0 24px 56px rgba(0,0,0,0.45);
    max-width: 880px; margin: 0 auto;
}
.cv-head {
    padding: 18px 22px; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px; text-align: center;
    position: sticky; top: 0; z-index: 1;
}
.cv-head.bad  { background: rgba(22,10,10,0.95); color: rgba(255,100,100,0.6); border-bottom: 1px solid rgba(231,76,60,0.15); }
.cv-head.good { background: rgba(10,10,8,0.95);  color: #D9A171; border-bottom: var(--glass-border); border-left: 1px solid rgba(217,161,113,0.15); }
.cv-cell {
    padding: 16px 20px; font-size: 0.87rem; line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,0.038);
    display: flex; align-items: flex-start; gap: 10px;
}
.cv-cell.bad  { background: rgba(18,10,10,0.55); color: rgba(255,255,255,0.42); border-right: 1px solid rgba(255,255,255,0.04); }
.cv-cell.good { background: rgba(12,12,9,0.50);  color: rgba(255,255,255,0.82); border-left: 1px solid rgba(217,161,113,0.08); }
.cv-cell strong { color: #fff; }
.cv-icon { flex-shrink: 0; margin-top: 2px; line-height: 1.55; }
.cv-icon svg { display: block; color: var(--primary-gold); }
.cv-last { border-bottom: none; }

/* ── Image Compare Slider (21st.dev Style) ── */
.img-compare-wrapper { position: relative; width: 100%; max-width: 900px; margin: 3rem auto; border-radius: 16px; overflow: hidden; border: var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); aspect-ratio: 16/9; background: #000; }
.img-compare-base, .img-compare-overlay-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.img-compare-overlay-img { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.img-compare-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; -webkit-appearance: none; appearance: none; background: transparent; margin: 0; touch-action: pan-y; }
.img-compare-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 50px; height: 500px; cursor: ew-resize; }
.img-compare-slider::-moz-range-thumb { width: 50px; height: 500px; cursor: ew-resize; border: none; background: transparent; }
.img-compare-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; background: rgba(18,18,18,0.85); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 2px solid var(--primary-gold); border-radius: 50%; z-index: 3; display: flex; align-items: center; justify-content: center; pointer-events: none; box-shadow: 0 0 20px rgba(0,0,0,0.8); }
.img-compare-handle::before, .img-compare-handle::after { content: ''; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.img-compare-handle::before { border-right: 8px solid var(--primary-gold); margin-right: 4px; }
.img-compare-handle::after { border-left: 8px solid var(--primary-gold); margin-left: 4px; }
.img-compare-handle-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--primary-gold); transform: translateX(-50%); z-index: 2; pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,0.8); }
@media (max-width: 640px) {
    .comparison-visual { grid-template-columns: 1fr; }
    .cv-head.bad, .cv-cell.bad { display: none; }
    .cv-head.good { border-left: none; }
    .cv-cell.good { border-left: none; }
}

/* INLINE STYLE CLASSES GENERATED */
.inline-style-1 { display:none; }
.inline-style-10 { color: #d9a171; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; text-align: center;; }
.inline-style-11 { position: relative; z-index: 1; border-top: var(--glass-border);; }
.inline-style-12 { margin-top: 1rem; margin-bottom: 1.5rem;; }
.inline-style-13 { font-weight: 700; font-size: 0.95rem;; }
.inline-style-14 { font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem;; }
.inline-style-15 { align-items: center;; }
.inline-style-16 { max-height: 180px;; }
.inline-style-17 { font-family: 'DM Sans', sans-serif; font-size: 1.2rem;; }
.inline-style-18 { color: var(--text-muted); font-size: 0.9rem;; }
.inline-style-19 { max-width: 800px; margin: 0 auto;; }
.inline-style-2 { display:none;visibility:hidden; }
.inline-style-20 { position: relative; z-index: 1; background: rgba(18, 18, 18, 0.4); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: var(--glass-border);; }
.inline-style-21 { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: var(--glass-border);; }
.inline-style-22 { color: var(--primary-gold); margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif;; }
.inline-style-23 { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem;; }
.inline-style-24 { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem;; }
.inline-style-25 { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(217, 161, 113, 0.2);; }
.inline-style-26 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-light); font-style: italic;; }
.inline-style-27 { color: var(--primary-gold); font-size: 0.9rem; margin-top: 0.5rem; font-weight: bold; text-transform: uppercase;; }
.inline-style-28 { margin-top: 2.5rem;; }
.inline-style-29 { font-size: 0.95rem; padding: 1rem 2rem;; }
.inline-style-3 { height: 20px; width: 20px; border-radius: 4px;; }
.inline-style-30 { padding: 80px 0; position: relative; z-index: 1; border-top: var(--glass-border);; }
.inline-style-31 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; align-items: flex-start;; }
.inline-style-32 { font-size: 2rem; margin-bottom: 10px;; }
.inline-style-33 { color: #d9a171;; }
.inline-style-34 { color: #aaa; margin-bottom: 30px;; }
.inline-style-35 { display: flex; flex-direction: column; gap: 20px;; }
.inline-style-36 { background: rgba(26, 26, 26, 0.85); padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); border-left: 4px solid #d9a171; display: flex; gap: 15px; align-items: flex-start;; }
.inline-style-37 { font-size: 1.5rem;; }
.inline-style-38 { margin: 0 0 5px 0; color: #fff;; }
.inline-style-39 { margin: 0; font-size: 0.9rem; color: #aaa;; }
.inline-style-4 { margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500;; }
.inline-style-40 { background: rgba(18, 18, 18, 0.65); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 40px; border-radius: 16px; border: var(--glass-border); box-shadow: 0 15px 40px rgba(0,0,0,0.5);; }
.inline-style-41 { margin-top: 0; margin-bottom: 25px; font-size: 1.5rem;; }
.inline-style-42 { display: flex; flex-direction: column; gap: 15px;; }
.inline-style-43 { display: none;; }
.inline-style-44 { display: block; font-size: 0.85rem; color: #aaa; margin-bottom: 5px;; }
.inline-style-45 { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: inherit; outline: none;; }
.inline-style-46 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px;; }
.inline-style-47 { display: flex; gap: 10px; align-items: flex-start; margin-top: 5px;; }
.inline-style-48 { margin-top: 4px; cursor: pointer;; }
.inline-style-49 { font-size: 0.85rem; color: #aaa; line-height: 1.4; cursor: pointer;; }
.inline-style-5 { margin-top: 10px;; }
.inline-style-50 { color: #d9a171; text-decoration: underline;; }
.inline-style-51 { margin-top: 10px; padding: 15px; background: #d9a171; color: #000; border: none; border-radius: 8px; font-weight: 800; font-size: 1rem; cursor: pointer; transition: 0.3s; width: 100%;; }
.inline-style-52 { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem;; }
.inline-style-53 { margin-right: 1rem;; }
.inline-style-54 { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem;; }
.inline-style-55 { font-size: 0.75rem; color: var(--text-muted);; }
.inline-style-56 { font-size: 1.3rem; font-weight: bold; color: var(--text-light); font-family: 'DM Sans', sans-serif;; }
.inline-style-57 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); z-index: 9999; align-items: center; justify-content: center; padding: 20px;; }
.inline-style-58 { background: #121212; border: 1px solid rgba(217, 161, 113, 0.3); border-radius: 20px; padding: 40px; max-width: 500px; width: 100%; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5);; }
.inline-style-59 { width: 80px; height: 80px; background: rgba(46, 204, 113, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;; }
.inline-style-6 { margin-bottom: 40px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; color: var(--primary-gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;; }
.inline-style-60 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin-bottom: 15px;; }
.inline-style-61 { color: #ccc; font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px;; }
.inline-style-62 { display: flex; flex-direction: column; gap: 12px;; }
.inline-style-63 { background: #25d366; color: #fff; padding: 15px; border-radius: 10px; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px;; }
.inline-style-64 { background: transparent; color: #888; border: 1px solid #333; padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s;; }
.inline-style-7 { position: relative; width: 100%; max-width: 800px; margin: 0 auto;; }
.inline-style-8 { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); border: 1px solid rgba(217, 161, 113, 0.2);; }
.inline-style-9 { text-align: center; color: var(--text-muted); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif;; }


/* ========== INLINE STYLES CONVERTIDOS ========== */

.inline-style-1 {
  margin-top:32px;
}
.inline-style-2 {
  margin-top:24px; color:var(--text-light); font-weight:600;
}
.inline-style-3 {
  max-width:600px; margin-top:20px;
}
.inline-style-4 {
  margin-top:12px; color:var(--danger-red); font-weight:600;
}
.inline-style-5 {
  margin-top:36px;
}
.inline-style-6 {
  max-width:580px; margin-top:16px; margin-bottom:48px;
}
.inline-style-7 {
  max-width:520px; margin-inline:auto;
}
.inline-style-8 {
  display:none;visibility:hidden
}
.inline-style-9 {
  color:var(--primary-gold); font-weight:700;
}
.inline-style-10 {
  display:block;margin:0 auto 24px;
}
.hotmart-logo-sm {
  height:28px;width:auto;
}
.inline-style-12 {
  position:relative
}
.inline-style-13 {
  justify-content:center
}
.inline-style-14 {
  text-align:center
}
.inline-style-15 {
  display:none
}
.inline-style-16 {
  margin-top: 2rem;
}
.inline-style-17 {
  height: 18px; border-radius: 4px;
}
.inline-style-18 {
  margin-top: 15px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.inline-style-19 {
  text-align: center;
}
.inline-style-20 {
  font-size: 2.8rem; margin-bottom: 20px;
}
.inline-style-21 {
  color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto;
}
.inline-style-22 {
  font-size: 1.3rem; margin-bottom: 10px;
}
.inline-style-23 {
  color: var(--text-muted); font-size: 0.95rem;
}
.inline-style-24 {
  margin-top: 5rem; margin-bottom: 3rem;
}
.inline-style-25 {
  text-align: center; margin-bottom: 1rem; color: var(--primary-gold); font-family: 'Playfair Display', serif; font-size: 2rem;
}
.inline-style-26 {
  text-align: center; font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem;
}
.inline-style-27 {
  text-align: center; margin-bottom: 70px;
}
.inline-style-28 {
  text-align: center; margin-bottom: 60px;
}
.inline-style-29 {
  font-size: 3rem; margin-bottom: 15px;
}
.inline-style-30 {
  text-align: left;
}
.inline-style-31 {
  color: var(--primary-gold); font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.inline-style-32 {
  display: none;
}
.inline-style-33 {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 25px; padding-left: 10px;
}
.inline-style-34 {
  margin-top: 5px;
}
.inline-style-35 {
  font-size: 0.85rem; color: #888; line-height: 1.4; text-align: left; display: block;
}
.inline-style-36 {
  color: var(--primary-gold); text-decoration: underline;
  background: none; padding: 0; border: none; border-radius: 0; display: inline; gap: 0; align-items: initial; box-shadow: none;
}
.inline-style-37 {
  text-align: center; height: 100%; display: flex; align-items: center; justify-content: center;
}
.inline-style-38 {
  border-radius: 12px; height: 100%; max-height: 380px; width: auto; object-fit: contain; box-shadow: 0 15px 50px rgba(217,161,113,0.15); border: 1px solid rgba(217,161,113,0.1);
}
.inline-style-39 {
  text-align: center; margin-bottom: 50px;
}
.inline-style-40 {
  max-width: 800px; margin: 0 auto;
}
.inline-style-41 {
  font-size: 0.75rem; color: var(--text-muted);
}
.inline-style-42 {
  font-size: 1.3rem; font-weight: bold; color: var(--text-light); font-family: 'DM Sans', sans-serif;
}
.inline-style-43 {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); z-index: 9999; align-items: center; justify-content: center; padding: 20px;
}
.inline-style-44 {
  background: #121212; border: 1px solid rgba(217, 161, 113, 0.3); border-radius: 20px; padding: 40px; max-width: 500px; width: 100%; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.inline-style-45 {
  width: 80px; height: 80px; background: rgba(46, 204, 113, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
}
.inline-style-46 {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fff; margin-bottom: 15px;
}
.inline-style-47 {
  color: #ccc; font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px;
}
.inline-style-48 {
  display: flex; flex-direction: column; gap: 12px;
}
.inline-style-49 {
  background: #25d366; color: #fff; padding: 15px; border-radius: 10px; font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.inline-style-50 {
  background: transparent; color: #888; border: 1px solid #333; padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.inline-style-51 {
  align-items: center;
}
.inline-style-52 {
  margin-bottom: 15px;
}
.inline-style-53 {
  background: transparent; border: none; box-shadow: none;
}
.inline-style-54 {
  position: relative; z-index: 1;
}
.inline-style-55 {
  background: rgba(18, 18, 18, 0.85); border-top: var(--glass-border); position: relative; z-index: 1;
}
.inline-style-56 {
  position: relative; z-index: 1; border-top: var(--glass-border);
}
.inline-style-57 {
  background: rgba(18, 18, 18, 0.85); border-top: var(--glass-border); padding: 80px 0; text-align: center; position: relative; z-index: 1;
}
.inline-style-58 {
  max-width: 800px;
}
.inline-style-59 {
  display: flex; justify-content: center;
}
.inline-style-60 {
  width: 100%; max-width: 450px;
}
.inline-style-61 {
  font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px;
}
.inline-style-62 {
  font-size: 0.85rem; color: var(--text-muted);
}
.inline-style-63 {
  margin-top: 25px; display: flex; gap: 10px; flex-wrap: wrap; color: var(--primary-gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.inline-style-64 {
  border-radius: 15px; overflow: hidden; border: 1px solid rgba(217, 161, 113, 0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.6); position: relative;
}
.inline-style-65 {
  width: 100%; display: block;
}
.inline-style-66 {
  background: rgba(18, 18, 18, 0.85); border-top: var(--glass-border); border-bottom: var(--glass-border); padding: 80px 0; text-align: center; position: relative; z-index: 1;
}
.inline-style-67 {
  font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--primary-gold); margin-bottom: 20px;
}
.inline-style-68 {
  font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; color: var(--text-muted);
}
.inline-style-69 {
  background: rgba(26, 26, 26, 0.6); display: inline-block; padding: 15px 30px; border-radius: 50px; border: 1px solid var(--primary-gold); font-weight: bold; margin-bottom: 30px;
}
.inline-style-70 {
  font-size: 1.5rem; text-align: left;
}
.inline-style-71 {
  font-size: 1rem; text-align: left; max-width: 85%;
}
.inline-style-72 {
  font-size: 1.3rem; text-align: left;
}
.inline-style-73 {
  font-size: 0.9rem; text-align: left;
}
.inline-style-74 {
  font-style: italic; margin-bottom: 20px; font-size: 1.05rem; flex-grow: 1;
}
.inline-style-75 {
  font-size: 60px; margin-bottom: 20px;
}
.inline-style-76 {
  font-size: 2.5rem; margin-bottom: 15px;
}
.inline-style-77 {
  color: var(--text-muted); margin-top: 15px; font-size: 1.1rem;
}
.inline-style-78 {
  max-width: 750px; margin: 0 auto;
}
.inline-style-79 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-gold); margin-bottom: 20px; letter-spacing: 2px;
}
.inline-style-80 {
  margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem;
}
.inline-style-81 {
  color: var(--primary-gold); text-decoration: none; margin: 0 10px;
}
.inline-style-82 {
  font-size: 0.75rem; margin-top: 20px; color: #555; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5;
}
.inline-style-83 {
  position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10, 10, 10, 0.95); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-top: 1px solid rgba(212, 175, 55, 0.3); padding: 20px 0; z-index: 9999; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.inline-style-84 {
  max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; gap: 20px; flex-wrap: wrap;
}
.inline-style-85 {
  color: #e0e0e0; font-size: 14px; font-weight: 300; max-width: 65%; line-height: 1.5; margin: 0;
}
.inline-style-86 {
  color: #d4af37; text-decoration: underline;
}
.inline-style-87 {
  display: flex; gap: 15px; align-items: center; flex-shrink: 0;
}
.inline-style-88 {
  background: linear-gradient(45deg, #b8962e, #d4af37); color: #000; border: none; padding: 12px 25px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; cursor: pointer;
}
.inline-style-89 {
  color: var(--text-muted); font-size: 0.95rem; margin-top: 10px; text-decoration: none; font-weight: 500;
}
.inline-style-90 {
  background: transparent; border: 1px solid var(--primary-gold); color: var(--text-light); margin-top: 0; padding: 12px;
}
.inline-style-91 {
  text-align: center; margin-top: -15px; margin-bottom: 25px;
}
.inline-style-92 {
  color: var(--primary-gold); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: 0.3s;
}
.inline-style-93 {
  text-align: left; margin-bottom: 25px;
}
.inline-style-94 {
  color: var(--primary-gold); font-size: 0.85rem; font-weight: 600; transition: 0.3s;
}
.inline-style-95 {
  display: none; margin-top: 10px; gap: 10px;
}
.inline-style-96 {
  flex: 1; padding: 12px; background: #111; border: 1px solid #333; border-radius: 8px; color: #fff; text-transform: uppercase; outline: none; font-size: 0.9rem;
}
.inline-style-97 {
  background: var(--surface-elevated); border: 1px solid rgba(255,255,255,0.1); color: var(--text-light); padding: 0 15px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.3s;
}
.inline-style-98 {
  font-size: 0.8rem; margin-top: 8px; display: none;
}
.inline-style-99 {
  text-transform: uppercase;
}
.inline-style-100 {
  display: none; text-align: center;
}
.inline-style-101 {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px;
}
.inline-style-102 {
  border-radius: 8px; margin-bottom: 20px; border: 4px solid #fff; padding: 2px;
}
.inline-style-103 {
  margin-top: 15px;
}
.inline-style-104 {
  color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5;
}
.inline-style-105 {
  text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 15px;
}
.inline-style-106 {
  text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; margin-right: 8px;
}
.inline-style-107 {
  margin: 0; padding: 6px 15px; border-radius: 20px; white-space: nowrap;
}
.inline-style-108 {
  background-image: url('../../assets/img/como-zerar-faltas.jpg'); background-size: cover; background-position: center;
}
.inline-style-109 {
  background: #2196F3; color: #fff;
}
.inline-style-110 {
  background: var(--danger-red); color: #fff;
}
.inline-style-111 {
  background-image: url('https://images.pexels.com/photos/3993136/pexels-photo-3993136.jpeg?auto=compress&cs=tinysrgb&w=300'); background-size: cover; background-position: center;
}
.inline-style-112 {
  background: var(--success-green); color: #fff;
}
.inline-style-113 {
  display: none; margin-top: 15px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px;
}
.inline-style-114 {
  background: rgba(0,0,0,0.2); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.02);
}
.inline-style-115 {
  margin-bottom: 10px; padding: 5px 10px; background: rgba(26,26,26,0.5);
}
.inline-style-116 {
  margin-bottom: 8px;
}
.inline-style-117 {
  font-size: 0.9rem; margin-bottom: 0;
}
.inline-style-118 {
  margin: 0 auto; background: transparent; color: var(--primary-gold); border: none;
}
.inline-style-119 {
  width: 100%; padding: 10px;
}
.inline-style-120 {
  width: 100%; padding: 10px; background: rgba(231, 76, 60, 0.1); margin-top: 10px;
}
.inline-style-121 {
  max-width: 500px;
}
.inline-style-122 {
  width: 100%; padding: 12px; font-size: 1rem;
}
.inline-style-123 {
  max-width: 450px;
}
.inline-style-124 {
  width: 100%; text-align: center; margin-top: 10px; padding: 12px;
}
.inline-style-125 {
  max-width: 400px; padding: 30px; text-align: center;
}
.inline-style-126 {
  max-width: 700px; max-height: 80vh; display: flex; flex-direction: column;
}
.inline-style-127 {
  max-width: 400px; padding: 25px; text-align: center;
}
.inline-style-128 {
  display: none; padding: 10px 20px;
}
.inline-style-129 {
  margin: 0; padding: 10px 20px;
}
.inline-style-130 {
  grid-template-columns: 1fr;
}
.inline-style-131 {
  background-image: url(''); background-size: cover; background-position: center;
}
.inline-style-132 {
  border: 1px solid rgba(231, 76, 60, 0.3); padding: 15px; margin-bottom: 15px; border-radius: 12px; background: rgba(231, 76, 60, 0.05);
}
.inline-style-133 {
  background: rgba(231, 76, 60, 0.05); border: 1px solid rgba(231, 76, 60, 0.3); border-radius: 12px; padding: 15px; margin-bottom: 15px;
}
.inline-style-134 {
  color: var(--danger-red); font-weight: bold; font-size: 0.85rem; display: block; margin-bottom: 5px;
}
.inline-style-135 {
  color: var(--text-muted); font-size: 0.8rem;
}
.inline-style-136 {
  color: #fff; font-size: 0.85rem;
}
.inline-style-137 {
  color: #ccc; font-size: 0.85rem; margin-top: 5px;
}
.inline-style-138 {
  display: flex; align-items: center; gap: 15px; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 15px;
}
.inline-style-139 {
  text-align: right;
}
.inline-style-140 {
  font-weight: bold; font-size: 0.95rem; color: #fff;
}
.inline-style-141 {
  font-size: 0.8rem; color: var(--primary-gold); font-weight: 600;
}
.inline-style-142 {
  width: 36px; height: 36px; border: 2px solid var(--primary-gold);
}
.inline-style-143 {
  display: none; position: relative; width: max-content; margin: 0 auto 15px;
}
.inline-style-144 {
  max-height: 150px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
}
.inline-style-145 {
  position: absolute; top: -10px; right: -10px; background: var(--danger-red); color: white; border: none; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center;
}
.inline-style-146 {
  color: #4CAF50;
}
.inline-style-147 {
  font-size: 1.2rem;
}
.inline-style-148 {
  color: #2196F3;
}
.inline-style-149 {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.inline-style-150 {
  margin-bottom: 0;
}
.inline-style-151 {
  background-image: url('https://images.pexels.com/photos/4144096/pexels-photo-4144096.jpeg?auto=compress&cs=tinysrgb&w=300'); background-size: cover; background-position: center;
}
.inline-style-152 {
  background-image: url('https://images.pexels.com/photos/5668875/pexels-photo-5668875.jpeg?auto=compress&cs=tinysrgb&w=300'); background-size: cover; background-position: center;
}
.inline-style-153 {
  font-weight: 800; color: var(--primary-gold);
}
.inline-style-154 {
  width: 35px; height: 35px; border-radius: 50%;
}
.inline-style-155 {
  font-size: 0.95rem; margin: 0; color: #fff;
}
.inline-style-156 {
  width: 35px; height: 35px; border-radius: 50%; object-fit: cover;
}
.inline-style-157 {
  text-align: center; margin-top: 30px;
}
.inline-style-158 {
  margin: 0; color: var(--danger-red);
}
.inline-style-159 {
  padding: 20px;
}
.inline-style-160 {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px;
}
.inline-style-161 {
  margin-bottom: 15px; width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; font-family: inherit; font-size: 0.95rem; outline: none; cursor: pointer;
}
.inline-style-162 {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; padding: 15px; font-family: inherit; resize: none; outline: none; margin-bottom: 15px;
}
.inline-style-163 {
  margin: 0; color: var(--primary-gold);
}
.inline-style-164 {
  padding: 20px; display: flex; flex-direction: column; gap: 15px;
}
.inline-style-165 {
  display: block; font-size: 0.85rem; color: #aaa; margin-bottom: 5px;
}
.inline-style-166 {
  width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; outline: none; cursor: pointer; font-family: inherit;
}
.inline-style-167 {
  width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; outline: none; font-family: inherit;
}
.inline-style-168 {
  width: 100%; color: #aaa; font-size: 0.85rem; padding: 5px 0;
}
.inline-style-169 {
  position: absolute; top: 15px; right: 15px;
}
.inline-style-170 {
  width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--primary-gold); object-fit: cover; margin: 0 auto 15px;
}
.inline-style-171 {
  margin: 0 0 5px 0; font-size: 1.5rem; color: #fff;
}
.inline-style-172 {
  background: rgba(217,161,113,0.15); color: var(--primary-gold); font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; font-weight: 800; display: inline-block;
}
.inline-style-173 {
  padding: 20px; overflow-y: auto; flex: 1;
}
.inline-style-174 {
  text-align: center; color: var(--text-muted);
}
.inline-style-175 {
  z-index: 10005;
}
.inline-style-176 {
  margin: 0 0 15px 0; color: var(--primary-gold);
}
.inline-style-177 {
  color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5;
}
.inline-style-178 {
  display: none; margin-bottom: 20px;
}
.inline-style-179 {
  width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: inherit; outline: none;
}
.inline-style-180 {
  display: flex; gap: 10px; justify-content: center;
}
.inline-style-181 {
  display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.inline-style-182 {
  color: var(--danger-red); font-weight: bold; font-size: 0.85rem;
}
.inline-style-183 {
  display: flex; gap: 10px;
}
.inline-style-184 {
  margin-bottom: 10px;
}
.inline-style-185 {
  background: rgba(0,0,0,0.3); padding: 12px; border-radius: 8px; border-left: 3px solid #555; margin-bottom: 15px;
}
.inline-style-186 {
  color: var(--primary-gold);
}
.inline-style-187 {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 1rem;
}
.inline-style-188 {
  height: 32px; width: auto;
}
.inline-style-189 {
  color: var(--text-light); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px;
}
.inline-style-190 {
  color: var(--text-muted); font-size: 0.9rem;
}
.inline-style-191 {
  height: 25px; opacity: 0.3; margin-bottom: 15px;
}
.inline-style-192 {
  color: inherit; text-decoration: underline;
}
.inline-style-193 {
  margin-top: 1rem;
}
.inline-style-194 {
  margin-bottom: 0.5rem; font-size: 0.8rem;
}
.inline-style-195 {
  background: rgba(217,161,113,0.05); border: 1px dashed var(--primary-gold); border-radius: 8px; padding: 12px; margin-bottom: 1.5rem; text-align: center; color: var(--primary-gold); font-size: 0.8rem; font-weight: 600;
}
.inline-style-196 {
  font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); margin-right: 8px;
}
.inline-style-197 {
  display: block; width: 100%; margin-top: 5px; color: var(--primary-gold); font-size: 0.75rem; font-weight: bold;
}
.inline-style-198 {
  color: var(--primary-gold); font-weight: bold;
}

/* =========================================================
   SEÇÃO SOBRE NÓS
   ========================================================= */
.sobre-nos-section {
    position: relative; z-index: 1;
    background: rgba(18, 18, 18, 0.4);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: var(--glass-border);
}
.sobre-nos-img {
    width: 100%; height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: var(--glass-border);
}
.sobre-nos-heading {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
}
.sobre-nos-p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.sobre-nos-p-mb { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.sobre-nos-quote {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid rgba(217, 161, 113, 0.2);
}
.sobre-nos-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: var(--text-light); font-style: italic;
}
.sobre-nos-quote-attr {
    color: var(--primary-gold);
    font-size: 0.9rem; margin-top: 0.5rem;
    font-weight: bold; text-transform: uppercase;
}
.sobre-nos-cta { margin-top: 2.5rem; }
.btn-sobre-nos { font-size: 0.95rem; padding: 1rem 2rem; }

/* =========================================================
   SEÇÃO CONTATO COMERCIAL
   ========================================================= */
.contato-section { padding: 80px 0; position: relative; z-index: 1; border-top: var(--glass-border); }
.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px; align-items: flex-start;
}
.contato-heading { font-size: 2rem; margin-bottom: 10px; }
.contato-heading-accent { color: #d9a171; }
.contato-desc { color: #aaa; margin-bottom: 30px; }
.contato-features { display: flex; flex-direction: column; gap: 20px; }
.contato-feature-card {
    background: rgba(26, 26, 26, 0.85);
    padding: 20px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 4px solid #d9a171;
    display: flex; gap: 15px; align-items: flex-start;
}
.contato-feature-icon { font-size: 1.5rem; }
.contato-feature-title { margin: 0 0 5px 0; color: #fff; }
.contato-feature-text { margin: 0; font-size: 0.9rem; color: #aaa; }
.contato-form-panel {
    background: rgba(18, 18, 18, 0.65);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    padding: 40px; border-radius: 16px;
    border: var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.contato-form-title { margin-top: 0; margin-bottom: 25px; font-size: 1.5rem; }
.contato-form { display: flex; flex-direction: column; gap: 15px; }
.contato-honeypot { display: none; }
.contato-label { display: block; font-size: 0.85rem; color: #aaa; margin-bottom: 5px; }
.contato-input {
    width: 100%; padding: 12px;
    background: rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff;
    font-family: inherit; outline: none; font-size: 1rem;
}
.contato-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contato-lgpd { display: flex; gap: 10px; align-items: flex-start; margin-top: 5px; }
.contato-lgpd-checkbox { margin-top: 4px; cursor: pointer; }
.contato-lgpd-label { font-size: 0.85rem; color: #aaa; line-height: 1.4; cursor: pointer; }
.contato-link { color: #d9a171; text-decoration: underline; }
.contato-submit {
    margin-top: 10px; padding: 15px;
    background: #d9a171; color: #000;
    border: none; border-radius: 8px;
    font-weight: 800; font-size: 1rem;
    cursor: pointer; transition: 0.3s; width: 100%;
}
.contato-submit:hover { background: #c28c5e; }
@media (max-width: 768px) { .contato-input-row { grid-template-columns: 1fr; } }

/* ============================ HUMANIZAÇÃO ============================ */

/* Card empathy (problema) */
.card-empathy { font-size: 0.8rem; color: rgba(217,161,113,0.65); font-style: italic; margin-top: 8px; border-top: 1px solid rgba(217,161,113,0.12); padding-top: 8px; }

/* Depoimentos — atribuição e cidade */
.t-attribution { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 12px; font-weight: 500; letter-spacing: 0.3px; }
.t-photo-city { font-size: 0.72rem; color: rgba(217,161,113,0.7); margin-top: 2px; font-weight: 500; letter-spacing: 0.5px; }

/* Seção Quem Usa */
.quem-usa-section { padding: 5rem 0; }
.quem-usa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quem-usa-card { border-radius: 14px; overflow: hidden; background: rgba(26,26,26,0.5); border: 1px solid rgba(255,255,255,0.07); transition: border-color 0.2s, transform 0.2s; }
.quem-usa-card:hover { border-color: rgba(217,161,113,0.25); transform: translateY(-3px); }
.quem-usa-foto-wrap { aspect-ratio: 4 / 3; overflow: hidden; background: rgba(217,161,113,0.06); display: flex; align-items: center; justify-content: center; }
.quem-usa-foto-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.quem-usa-card:hover .quem-usa-foto-wrap img { transform: scale(1.04); }
.quem-usa-foto-wrap.quem-usa-placeholder::after { content: '📷'; font-size: 2rem; opacity: 0.3; }
.quem-usa-info { padding: 14px 16px; }
.quem-usa-info strong { display: block; font-size: 0.95rem; color: #fff; font-weight: 700; margin-bottom: 3px; }
.quem-usa-info span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
@media (max-width: 768px) { .quem-usa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quem-usa-grid { grid-template-columns: 1fr; } }

/* ── Social Proof Notifications ── */
#sp-container { position: fixed; bottom: 90px; left: 24px; z-index: 9980; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.sp-toast { display: flex; align-items: center; gap: 12px; background: rgba(18,18,18,0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(217,161,113,0.22); border-radius: 14px; padding: 12px 16px; min-width: 280px; max-width: 320px; box-shadow: 0 8px 32px rgba(0,0,0,0.55); transform: translateX(-110%); opacity: 0; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease; pointer-events: auto; }
.sp-toast.sp-visible { transform: translateX(0); opacity: 1; }
.sp-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #D9A171, #b87d4b); color: #0e0e0e; font-weight: 800; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-body { flex: 1; min-width: 0; }
.sp-name { font-size: 0.82rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-city { font-weight: 400; color: rgba(255,255,255,0.45); }
.sp-action { font-size: 0.75rem; color: rgba(217,161,113,0.8); margin-top: 2px; }
.sp-time { font-size: 0.68rem; color: rgba(255,255,255,0.3); white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) { #sp-container { left: 12px; bottom: 160px; } .sp-toast { min-width: 240px; max-width: 270px; } }

/* Botão flutuante WhatsApp humanizado */
.whatsapp-float { position: fixed; bottom: 90px; right: 24px; z-index: 9990; display: flex; align-items: center; gap: 10px; background: #1a1a1a; border: 1px solid rgba(37,211,102,0.35); border-radius: 50px; padding: 10px 18px 10px 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.2); }
.whatsapp-float-bubble { width: 42px; height: 42px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.whatsapp-float-text { display: flex; flex-direction: column; }
.whatsapp-float-label { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.2; }
.whatsapp-float-sub { font-size: 0.7rem; color: #25d366; font-weight: 500; }
@media (max-width: 768px) { .whatsapp-float-text { display: none; } .whatsapp-float { padding: 0; width: 54px; height: 54px; border-radius: 50%; justify-content: center; bottom: 150px; } }

/* ============================ INTEGRATIONS STRIP ============================ */
.integrations-strip {
    padding: 28px 0;
    border-top: 1px solid rgba(217,161,113,0.10);
    border-bottom: 1px solid rgba(217,161,113,0.10);
    background: rgba(10,10,10,0.40);
    position: relative; z-index: 1;
}
.integrations-label {
    text-align: center;
    font-size: .70rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 16px;
}
.integrations-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.45);
    font-size: .78rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}
.integration-pill:hover {
    border-color: rgba(217,161,113,0.30);
    color: rgba(217,161,113,0.85);
}

/* ============================ ROI CALCULATOR ============================ */
.roi-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: rgba(18,18,18,0.65); border: 1px solid rgba(217,161,113,0.15); border-radius: 20px; padding: 40px; align-items: start; }
.roi-field { margin-bottom: 28px; }
.roi-field label { display: block; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .09em; }
.roi-slider-wrap { display: flex; align-items: center; gap: 14px; }
.roi-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; background: rgba(217,161,113,0.2); border-radius: 99px; outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #D9A171; cursor: pointer; box-shadow: 0 0 10px rgba(217,161,113,0.55); transition: transform .15s; }
.roi-slider::-webkit-slider-thumb:active { transform: scale(1.2); }
.roi-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #D9A171; cursor: pointer; border: none; }
.roi-value { font-size: .95rem; font-weight: 700; color: #D9A171; min-width: 68px; text-align: right; }
.roi-results-col { background: rgba(217,161,113,0.05); border: 1px solid rgba(217,161,113,0.2); border-radius: 14px; padding: 28px; }
.roi-results-header { font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; color: #D9A171; margin-bottom: 20px; }
.roi-metric { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.roi-metric:last-of-type { border-bottom: none; }
.roi-metric-label { font-size: .84rem; color: rgba(255,255,255,0.50); font-weight: 500; max-width: 55%; line-height: 1.4; }
.roi-metric-value { font-size: 1rem; font-weight: 700; color: #fff; }
.roi-total-wrap { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(217,161,113,0.25); }
.roi-total-label { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.roi-total-value { font-size: 1.9rem; font-weight: 900; color: #D9A171; font-family: 'Playfair Display', serif; }
.roi-payback { text-align: center; margin-top: 12px; font-size: .8rem; color: #10B981; font-weight: 700; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 999px; padding: 6px 14px; }
.roi-disclaimer { font-size: .72rem; color: rgba(255,255,255,0.27); line-height: 1.5; margin-top: 10px; }
@media (max-width: 768px) {
    .roi-card { grid-template-columns: 1fr; gap: 16px; padding: 20px 16px; }
    .roi-results-col { order: -1; padding: 20px; }
    .roi-results-header { font-size: .7rem; margin-bottom: 12px; }
    .roi-metric { padding: 9px 0; }
    .roi-metric-label { font-size: .8rem; max-width: 62%; }
    .roi-metric-value { font-size: .92rem; }
    .roi-total-wrap { margin-top: 12px; padding-top: 12px; }
    .roi-total-value { font-size: 1.6rem; }
    .roi-payback { font-size: .74rem; padding: 5px 12px; margin-top: 10px; }
    .roi-field { margin-bottom: 20px; }
    .roi-field label { font-size: .76rem; margin-bottom: 7px; }
    .roi-slider-wrap { gap: 10px; }
    .roi-slider { height: 6px; }
    .roi-value { min-width: 56px; font-size: .88rem; }
    .roi-disclaimer { font-size: .68rem; margin-top: 6px; }
}
@media (max-width: 480px) {
    .roi-card { padding: 14px 12px; gap: 12px; }
    .roi-results-col { padding: 16px; }
    .roi-total-value { font-size: 1.35rem; }
    .roi-metric-label { font-size: .75rem; }
    .roi-metric-value { font-size: .88rem; }
}

/* ============================ TRIAL JOURNEY ============================ */
.journey-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: .5rem; }
.journey-timeline::before { content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #D9A171 0%, rgba(217,161,113,0.15) 100%); z-index: 0; }
.journey-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.journey-badge { width: 62px; height: 62px; border-radius: 50%; background: #0d0d0e; border: 2px solid rgba(217,161,113,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary-gold); transition: border-color .3s, box-shadow .3s; }
.journey-step.journey-active .journey-badge { border-color: #D9A171; box-shadow: 0 0 22px rgba(217,161,113,0.4); }
.journey-day { font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; color: #D9A171; margin-bottom: 6px; }
.journey-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.journey-desc { font-size: .82rem; color: rgba(255,255,255,0.48); line-height: 1.65; }
@media (max-width: 768px) { .journey-timeline { grid-template-columns: 1fr 1fr; gap: 28px; } .journey-timeline::before { display: none; } }
@media (max-width: 480px) { .journey-timeline { grid-template-columns: 1fr; } }

/* ============================ CHANGELOG PAGE ============================ */
.changelog-hero { padding: 80px 24px 60px; text-align: center; background: #0d0d0e; border-bottom: 1px solid rgba(255,255,255,0.06); }
.changelog-hero h1 { font-family: 'Playfair Display',serif; font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 12px; }
.changelog-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.changelog-wrap { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.changelog-entry { display: grid; grid-template-columns: 120px 1fr; gap: 32px; margin-bottom: 48px; }
.changelog-date { text-align: right; padding-top: 4px; }
.changelog-date-tag { font-size: .76rem; font-weight: 900; color: #D9A171; text-transform: uppercase; letter-spacing: .1em; }
.changelog-date-full { font-size: .8rem; color: rgba(255,255,255,0.3); margin-top: 4px; }
.changelog-body { border-left: 2px solid rgba(217,161,113,0.2); padding-left: 28px; position: relative; }
.changelog-body::before { content: ''; position: absolute; left: -5px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: #D9A171; }
.changelog-version { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.changelog-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.changelog-list { list-style: none; padding: 0; margin: 0; }
.changelog-list li { font-size: .88rem; color: rgba(255,255,255,0.55); padding: 5px 0; display: flex; gap: 10px; line-height: 1.5; }
.changelog-list li::before { flex-shrink: 0; font-size: .75rem; padding-top: 2px; }
.changelog-list li.feat::before { content: '✦'; color: #D9A171; }
.changelog-list li.fix::before { content: '⬡'; color: #10B981; }
.changelog-list li.imp::before { content: '▸'; color: rgba(255,255,255,0.35); }
.changelog-tag { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; margin-bottom: 10px; }
.changelog-tag.feat { background: rgba(217,161,113,0.1); color: #D9A171; border: 1px solid rgba(217,161,113,0.25); }
.changelog-tag.fix { background: rgba(16,185,129,0.08); color: #10B981; border: 1px solid rgba(16,185,129,0.2); }
.changelog-tag.imp { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.08); }
.roadmap-wrap { background: rgba(217,161,113,0.04); border: 1px solid rgba(217,161,113,0.15); border-radius: 16px; padding: 32px; margin-top: 16px; }
.roadmap-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: flex-start; }
.roadmap-item:last-child { border-bottom: none; }
.roadmap-eta { font-size: .72rem; font-weight: 700; color: #D9A171; white-space: nowrap; padding-top: 2px; min-width: 80px; }
.roadmap-desc { font-size: .88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.roadmap-desc strong { color: #fff; }
@media (max-width: 600px) { .changelog-entry { grid-template-columns: 1fr; gap: 8px; } .changelog-date { text-align: left; } }

/* ============================ STATUS PAGE ============================ */
.status-hero { padding: 80px 24px 40px; text-align: center; }
.status-overall { display: inline-flex; align-items: center; gap: 12px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: 999px; padding: 10px 24px; margin: 20px auto; }
.status-overall-dot { width: 10px; height: 10px; border-radius: 50%; background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.6); animation: pulseDot 2s ease-in-out infinite; }
.status-overall-text { font-size: .9rem; font-weight: 700; color: #10B981; }
.status-grid { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; }
.status-service { background: rgba(18,18,18,0.65); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px 24px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.status-service-name { font-size: .95rem; font-weight: 700; color: #fff; }
.status-service-sub { font-size: .78rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.status-badge.ok { background: rgba(16,185,129,0.1); color: #10B981; border: 1px solid rgba(16,185,129,0.25); }
.status-badge.warn { background: rgba(251,191,36,0.1); color: #FBBF24; border: 1px solid rgba(251,191,36,0.25); }
.status-uptime-row { max-width: 720px; margin: 0 auto; padding: 0 24px 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.status-uptime-card { background: rgba(18,18,18,0.65); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 20px; text-align: center; }
.status-uptime-val { font-size: 1.6rem; font-weight: 900; color: #D9A171; font-family: 'Playfair Display',serif; }
.status-uptime-lbl { font-size: .78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.status-history { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; }
.status-history h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.status-no-incidents { background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.15); border-radius: 12px; padding: 24px; text-align: center; color: rgba(255,255,255,0.45); font-size: .88rem; }
@media (max-width: 600px) { .status-uptime-row { grid-template-columns: 1fr 1fr; } }

/* ============================ INTEGRATIONS PAGE ============================ */
.integ-hero { padding: 80px 24px 60px; text-align: center; background: #0d0d0e; border-bottom: 1px solid rgba(255,255,255,0.06); }
.integ-hero h1 { font-family: 'Playfair Display',serif; font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 14px; }
.integ-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.integ-grid { max-width: 1100px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.integ-card { background: rgba(18,18,18,0.65); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color .25s, transform .25s; }
.integ-card:hover { border-color: rgba(217,161,113,0.3); transform: translateY(-3px); }
.integ-card-icon { font-size: 2.2rem; }
.integ-card-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.integ-card-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #D9A171; }
.integ-card-desc { font-size: .85rem; color: rgba(255,255,255,0.5); line-height: 1.65; flex: 1; }
.integ-card-tag { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: rgba(16,185,129,0.08); color: #10B981; border: 1px solid rgba(16,185,129,0.2); align-self: flex-start; }
@media (max-width: 900px) { .integ-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .integ-grid { grid-template-columns: 1fr; } }
.integration-pill svg { flex-shrink: 0; opacity: 0.7; }

/* ============================ IRIS: WHATSAPP SIMULATION ============================ */
.wa-sim-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.wa-sim-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.wa-phone { background: #111B21; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); }
.wa-phone-header { background: #1F2C34; padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-contact-name { font-size: .88rem; font-weight: 700; color: #E9EDEF; }
.wa-contact-status { font-size: .7rem; color: #25D366; font-weight: 600; }
.wa-messages { padding: 14px 12px; min-height: 300px; max-height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; background: #0B141A; scrollbar-width: none; }
.wa-messages::-webkit-scrollbar { display: none; }
.wa-msg { background: #1F2C34; border-radius: 0 10px 10px 10px; padding: 10px 14px; max-width: 90%; font-size: .82rem; color: #E9EDEF; line-height: 1.55; animation: waMsgIn .3s ease forwards; }
.wa-msg-time { font-size: .65rem; color: #8696A0; text-align: right; margin-top: 4px; }
.wa-typing { background: #1F2C34; border-radius: 0 10px 10px 10px; padding: 12px 16px; display: inline-flex; gap: 5px; align-items: center; align-self: flex-start; }
.wa-typing-dot { width: 6px; height: 6px; border-radius: 50%; background: #8696A0; animation: waTyping 1.2s infinite ease-in-out; }
.wa-typing-dot:nth-child(2) { animation-delay: .2s; }
.wa-typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes waMsgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes waTyping { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.wa-feature-list { display: flex; flex-direction: column; gap: 22px; }
.wa-feature { display: flex; gap: 16px; align-items: flex-start; }
.wa-feature-icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: rgba(217,161,113,0.08); border: 1px solid rgba(217,161,113,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #D9A171; }
.wa-feature strong { display: block; color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.wa-feature p { font-size: .8rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .wa-sim-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ============================ IRIS: LEARNS TIMELINE ============================ */
.iris-learns-section { padding: 80px 0; background: rgba(13,13,14,0.8); border-top: 1px solid rgba(255,255,255,0.06); }
.iris-learns-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 48px; }
.iris-learns-grid::before { content: ''; position: absolute; top: 26px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #D9A171 0%, rgba(217,161,113,0.12) 100%); z-index: 0; }
.iris-learn-step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.learn-badge { width: 54px; height: 54px; border-radius: 50%; background: #0d0d0e; border: 2px solid rgba(217,161,113,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: .74rem; font-weight: 900; color: rgba(255,255,255,0.28); letter-spacing: .04em; transition: border-color .3s, box-shadow .3s, color .3s; }
.iris-learn-step.learn-active .learn-badge { border-color: #D9A171; color: #D9A171; box-shadow: 0 0 18px rgba(217,161,113,0.35); }
.learn-period { font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; color: #D9A171; margin-bottom: 7px; }
.learn-title { font-size: .93rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.learn-desc { font-size: .79rem; color: rgba(255,255,255,0.42); line-height: 1.62; }
.learn-accuracy { display: inline-block; margin-top: 10px; font-size: .7rem; font-weight: 700; color: #10B981; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 999px; padding: 3px 10px; }
@media (max-width: 768px) { .iris-learns-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; } .iris-learns-grid::before { display: none; } }
@media (max-width: 480px) { .iris-learns-grid { grid-template-columns: 1fr; gap: 0; } .iris-learn-step { text-align: left; display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .iris-learn-step:last-child { border-bottom: none; } .learn-badge { flex-shrink: 0; margin: 0; } }

/* ============================ IRIS: COMPARISON TABLE ============================ */
.iris-compare-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.iris-compare-wrap { overflow-x: auto; margin-top: 40px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); }
.iris-compare-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.iris-compare-table thead tr { background: rgba(18,18,18,0.95); }
.iris-compare-table th { padding: 16px 18px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: rgba(255,255,255,0.35); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.07); }
.iris-compare-table th:first-child { text-align: left; width: 42%; }
.iris-compare-table th.col-mastery { color: #D9A171; background: rgba(217,161,113,0.07); border-bottom-color: rgba(217,161,113,0.18); }
.iris-compare-table td { padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: .85rem; background: #0d0d0e; }
.iris-compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); font-weight: 500; }
.iris-compare-table td.col-mastery { background: rgba(217,161,113,0.04); }
.iris-compare-table tbody tr:last-child td { border-bottom: none; }
.iris-compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.iris-compare-table tbody tr:hover td.col-mastery { background: rgba(217,161,113,0.06); }
.cmp-yes { color: #10B981; font-weight: 700; font-size: 1rem; }
.cmp-no { color: rgba(255,255,255,0.14); font-size: 1rem; }
.cmp-partial { font-size: .74rem; font-weight: 600; color: rgba(255,255,255,0.32); font-style: italic; }
.iris-compare-footer { text-align: center; margin-top: 14px; font-size: .7rem; color: rgba(255,255,255,0.2); line-height: 1.5; }

/* ============================ IRIS: CHEMICAL WASTE CALCULATOR ============================ */
.chem-calc-section { padding: 80px 0; background: rgba(13,13,14,0.6); border-top: 1px solid rgba(255,255,255,0.06); }
.chem-calc-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: rgba(18,18,18,0.65); border: 1px solid rgba(217,161,113,0.15); border-radius: 20px; padding: 40px; align-items: start; margin-top: 40px; }
.chem-field { margin-bottom: 26px; }
.chem-field label { display: block; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .09em; }
.chem-slider-wrap { display: flex; align-items: center; gap: 14px; }
.chem-result { background: rgba(217,161,113,0.05); border: 1px solid rgba(217,161,113,0.2); border-radius: 14px; padding: 28px; }
.chem-result-header { font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; color: #D9A171; margin-bottom: 20px; }
.chem-result-metric { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.chem-result-metric:last-of-type { border-bottom: none; }
.chem-result-label { font-size: .84rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.chem-result-value { font-size: .95rem; font-weight: 700; color: #fff; }
.chem-result-value.large { font-size: 1.55rem; color: #D9A171; font-family: 'Playfair Display', serif; }
.chem-saving-bar { margin-top: 14px; background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.18); border-radius: 10px; padding: 14px 16px; }
.chem-saving-label { font-size: .88rem; font-weight: 700; color: #10B981; }
.chem-saving-sub { font-size: .74rem; color: rgba(255,255,255,0.32); margin-top: 3px; }
@media (max-width: 768px) { .chem-calc-card { grid-template-columns: 1fr; gap: 20px; padding: 20px 16px; } }

/* ============================ IRIS: DAY COMPARISON ============================ */
.day-compare-section { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.day-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.day-col { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.day-col-without { border-color: rgba(239,68,68,0.18); }
.day-col-with { border-color: rgba(16,185,129,0.22); }
.day-col-header { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.day-col-without .day-col-header { background: rgba(239,68,68,0.05); }
.day-col-with .day-col-header { background: rgba(16,185,129,0.05); }
.day-col-badge { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.day-col-badge.bad { color: rgba(239,68,68,0.75); }
.day-col-badge.good { color: #10B981; }
.day-item { display: flex; gap: 12px; padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: flex-start; }
.day-item:last-child { border-bottom: none; }
.day-time { font-size: .7rem; font-weight: 900; white-space: nowrap; min-width: 40px; padding-top: 3px; }
.day-item.bad .day-time { color: rgba(239,68,68,0.5); }
.day-item.good .day-time { color: rgba(16,185,129,0.6); }
.day-text { font-size: .83rem; line-height: 1.6; }
.day-item.bad .day-text { color: rgba(255,255,255,0.42); }
.day-item.good .day-text { color: rgba(255,255,255,0.65); }
@media (max-width: 768px) { .day-compare-grid { grid-template-columns: 1fr; } }

/* ============================ IRIS: ASK IRIS DEMO ============================ */
.ask-iris-section { padding: 80px 0; background: rgba(13,13,14,0.8); border-top: 1px solid rgba(255,255,255,0.06); }
.ask-iris-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 28px; margin-top: 40px; align-items: start; }
.ask-iris-scenarios { display: flex; flex-direction: column; gap: 8px; }
.ask-scenario-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px 14px; font-size: .83rem; font-weight: 600; color: rgba(255,255,255,0.48); cursor: pointer; text-align: left; transition: all .2s; line-height: 1.4; }
.ask-scenario-btn:hover { border-color: rgba(217,161,113,0.3); color: rgba(255,255,255,0.75); background: rgba(217,161,113,0.04); }
.ask-scenario-btn.active { background: rgba(217,161,113,0.08); border-color: rgba(217,161,113,0.4); color: #D9A171; font-weight: 700; }
.ask-iris-chat { background: rgba(18,18,18,0.7); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.ask-iris-chat-header { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: rgba(217,161,113,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: .88rem; font-weight: 700; color: #fff; }
.iris-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; box-shadow: 0 0 6px rgba(16,185,129,0.5); margin-left: auto; animation: pulseDot 2s infinite; }
.ask-iris-messages { padding: 20px; min-height: 260px; max-height: 360px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.ask-iris-messages::-webkit-scrollbar { width: 4px; }
.ask-iris-messages::-webkit-scrollbar-track { background: transparent; }
.ask-iris-messages::-webkit-scrollbar-thumb { background: rgba(217,161,113,0.2); border-radius: 99px; }
.ask-iris-msg { padding: 11px 15px; border-radius: 12px; font-size: .84rem; line-height: 1.65; max-width: 86%; animation: waMsgIn .3s ease forwards; }
.ask-iris-user { background: rgba(217,161,113,0.1); border: 1px solid rgba(217,161,113,0.2); color: rgba(255,255,255,0.85); align-self: flex-end; border-radius: 12px 12px 0 12px; }
.ask-iris-ai { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.72); align-self: flex-start; }
.ask-iris-typing { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 12px 16px; display: inline-flex; gap: 5px; align-items: center; align-self: flex-start; }
@media (max-width: 768px) { .ask-iris-wrap { grid-template-columns: 1fr; } .ask-iris-scenarios { flex-direction: row; flex-wrap: wrap; } .ask-scenario-btn { flex: 1 1 40%; font-size: .78rem; padding: 10px 12px; } }
.chem-result .btn-primary { width: 100%; text-align: center; display: block; box-sizing: border-box; margin-top: 1.2rem; }
.iris-sim-cta { text-align: center; margin-top: 1.8rem; }
.iris-sim-disclaimer { font-size: .78rem; color: rgba(255,255,255,0.28); margin-bottom: 1rem; }

/* ============================ IRIS NEW SECTIONS — MOBILE CONSOLIDATED ============================ */
@media (max-width: 768px) {
    /* Reduz padding das seções novas */
    .wa-sim-section,
    .iris-learns-section,
    .iris-compare-section,
    .chem-calc-section,
    .day-compare-section,
    .ask-iris-section { padding: 52px 0; }

    /* WA phone — altura menor pra não dominar a tela */
    .wa-messages { min-height: 200px; max-height: 260px; }

    /* Tabela: hint de scroll horizontal */
    .iris-compare-wrap::after { content: 'deslize para ver \2192'; display: block; text-align: center; font-size: .68rem; color: rgba(255,255,255,0.22); padding: 8px 0 2px; letter-spacing: .05em; }

    /* Calculadora química — resultado primeiro, igual à ROI */
    .chem-result { order: -1; padding: 20px; }
    .chem-result-value.large { font-size: 1.35rem; }

    /* Comparison day — espaçamento */
    .day-compare-grid { gap: 12px; margin-top: 28px; }
    .day-item { padding: 11px 16px; }

    /* Ask Íris — botões em 2 colunas bem ajustadas */
    .ask-scenario-btn { flex: 1 1 45%; text-align: center; font-size: .76rem; padding: 9px 10px; }
    .ask-iris-messages { min-height: 220px; max-height: 300px; padding: 14px; }

    /* Timelines */
    .iris-learns-grid { margin-top: 28px; }
}

@media (max-width: 480px) {
    .wa-sim-section,
    .iris-compare-section,
    .chem-calc-section,
    .day-compare-section,
    .ask-iris-section { padding: 40px 0; }

    /* WA */
    .wa-messages { min-height: 160px; max-height: 220px; }
    .wa-feature-list { gap: 16px; }

    /* Chemical calc */
    .chem-calc-card { padding: 14px 12px; gap: 14px; }
    .chem-result { padding: 14px; }
    .chem-result-metric { padding: 9px 0; }
    .chem-result-label { font-size: .78rem; }

    /* Day comparison */
    .day-text { font-size: .8rem; }
    .day-item { padding: 10px 14px; gap: 10px; }

    /* Ask Íris — botões full width em tela pequena */
    .ask-scenario-btn { flex: 1 1 100%; }
    .ask-iris-messages { min-height: 180px; max-height: 260px; }
    .ask-iris-msg { font-size: .8rem; max-width: 94%; }
}

/* ══ HERO SOCIAL PROOF ══ */
.hero-social-proof{display:flex;align-items:center;gap:10px;margin-top:10px;margin-bottom:2px}
.hero-proof-avatars{display:flex}
.hero-proof-avatars img{width:28px;height:28px;border-radius:50%;border:2px solid var(--bg-dark);object-fit:cover;margin-left:-8px}
.hero-proof-avatars img:first-child{margin-left:0}
.hero-social-proof p{font-size:.82rem;color:var(--text-muted);margin:0}
.hero-social-proof strong{color:var(--primary-gold)}

/* ══ PRICING FAQ ══ */
.pricing-faq{background:var(--bg-dark);padding:24px 0 56px}
.pricing-faq-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:920px;margin:0 auto}
.pfaq-item{background:var(--surface);border:1px solid rgba(217,161,113,.15);border-radius:12px;overflow:hidden}
.pfaq-item summary{cursor:pointer;padding:16px 20px;font-size:.9rem;font-weight:600;color:var(--text-light);list-style:none;display:flex;justify-content:space-between;align-items:center;gap:8px}
.pfaq-item summary::-webkit-details-marker{display:none}
.pfaq-item summary::after{content:'+';color:var(--primary-gold);font-size:1.2rem;font-weight:300;flex-shrink:0;transition:transform .2s}
.pfaq-item[open] summary::after{transform:rotate(45deg)}
.pfaq-body{padding:0 20px 16px;font-size:.84rem;color:var(--text-muted);line-height:1.6}
@media(max-width:768px){.pricing-faq-grid{grid-template-columns:1fr}}

/* ══ IRIS WHATSAPP CAMPAIGN ══ */
.iris-campaign-section{padding:80px 0;background:var(--bg-dark)}
.campaign-demo{display:flex;align-items:center;gap:32px;max-width:860px;margin:0 auto}
.campaign-trigger{flex:1;background:var(--surface);border:1px solid rgba(217,161,113,.2);border-radius:16px;padding:24px}
.campaign-trigger-header{margin-bottom:16px}
.campaign-tag{display:inline-block;padding:4px 10px;border-radius:20px;font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}
.iris-tag{background:rgba(217,161,113,.12);color:var(--primary-gold);border:1px solid rgba(217,161,113,.3)}
.campaign-client-row{display:flex;align-items:center;gap:12px;padding:12px;background:rgba(255,255,255,.04);border-radius:10px;margin-bottom:12px}
.campaign-client-avatar{width:40px;height:40px;border-radius:50%;background:var(--primary-gold);color:#000;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem;flex-shrink:0}
.campaign-client-name{font-size:.9rem;font-weight:600;color:var(--text-light)}
.campaign-client-info{font-size:.78rem;color:var(--text-muted);margin-top:2px}
.campaign-client-info strong{color:#ef4444}
.campaign-risk-badge{margin-left:auto;padding:4px 8px;background:rgba(239,68,68,.12);color:#ef4444;border-radius:6px;font-size:.72rem;font-weight:600;white-space:nowrap;flex-shrink:0}
.campaign-iris-insight{display:flex;align-items:flex-start;gap:10px;padding:12px;background:rgba(217,161,113,.06);border:1px solid rgba(217,161,113,.15);border-radius:10px}
.campaign-insight-icon{color:var(--primary-gold);font-size:.9rem;flex-shrink:0;margin-top:2px}
.campaign-iris-insight p{font-size:.8rem;color:var(--text-muted);margin:0;line-height:1.5}
.campaign-arrow{font-size:2rem;color:var(--primary-gold);flex-shrink:0}
.campaign-whatsapp{flex:1;background:#111b21;border-radius:16px;overflow:hidden}
.wapp-header{display:flex;align-items:center;gap:8px;padding:12px 16px;background:#1f2c34;font-size:.8rem;color:rgba(255,255,255,.7)}
.wapp-bubble{padding:16px}
.wapp-bubble p{background:#202c33;padding:10px 14px;border-radius:12px 12px 12px 4px;font-size:.82rem;color:rgba(255,255,255,.9);margin-bottom:6px;line-height:1.5}
.wapp-time{display:block;font-size:.7rem;color:rgba(255,255,255,.3);margin-top:4px}
.wapp-result{display:flex;align-items:center;gap:8px;padding:12px 16px;background:rgba(37,211,102,.08);border-top:1px solid rgba(37,211,102,.15);font-size:.8rem;color:#25d366;font-weight:600}
@media(max-width:768px){.campaign-demo{flex-direction:column}.campaign-arrow{transform:rotate(90deg)}}

/* ══ IRIS CHURN SECTION ══ */
.iris-churn-section{padding:80px 0;background:var(--surface)}
.churn-story{display:flex;align-items:center;gap:40px;max-width:860px;margin:0 auto}
.churn-before{flex:1;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:24px}
.churn-phase-label{font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--primary-gold);margin-bottom:16px}
.churn-clients{display:flex;flex-direction:column;gap:10px;margin-bottom:20px}
.churn-client{display:flex;align-items:center;gap:10px;padding:8px 12px;background:rgba(239,68,68,.06);border:1px solid rgba(239,68,68,.15);border-radius:8px}
.churn-client-dot{width:8px;height:8px;border-radius:50%;background:#ef4444;flex-shrink:0}
.churn-client strong{display:block;font-size:.85rem;color:var(--text-light)}
.churn-client span{font-size:.78rem;color:var(--text-muted);display:block}
.churn-action-label{font-size:.78rem;color:var(--text-muted);text-align:center;padding-top:12px;border-top:1px dashed rgba(255,255,255,.1)}
.churn-result-wrap{display:flex;flex-direction:column;gap:12px;flex-shrink:0}
.churn-result-card{padding:16px 20px;border-radius:12px;text-align:center;min-width:140px}
.churn-result-card.won{background:rgba(16,185,129,.1);border:1px solid rgba(16,185,129,.25)}
.churn-result-card.revenue{background:rgba(217,161,113,.1);border:1px solid rgba(217,161,113,.25)}
.churn-result-card.time{background:rgba(99,102,241,.1);border:1px solid rgba(99,102,241,.2)}
.churn-result-num{font-size:1.6rem;font-weight:700;margin-bottom:4px}
.churn-result-card.won .churn-result-num{color:#10b981}
.churn-result-card.revenue .churn-result-num{color:var(--primary-gold)}
.churn-result-card.time .churn-result-num{color:#818cf8}
.churn-result-text{font-size:.76rem;color:var(--text-muted);line-height:1.4}
.churn-cta{text-align:center;margin-top:40px}
.churn-cta p{font-size:1rem;color:var(--text-muted);margin-bottom:16px}
@media(max-width:768px){.churn-story{flex-direction:column}.churn-result-wrap{flex-direction:row;flex-wrap:wrap;justify-content:center;width:100%}.churn-result-card{min-width:100px;flex:1}}

/* ============================ COMPONENTES EXTRAS (migrado de index.html) ============================ */

/* ── Pulse dot ── */
.iris-pulse-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: #10B981; box-shadow: 0 0 8px rgba(52,211,153,0.90); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
@media (prefers-reduced-motion: reduce) { .iris-pulse-dot { animation: none; } .toggle-thumb { transition: none; } }
@media (max-width: 768px) { .hero-video-frame { display: none !important; } .hero-video-label { display: none !important; } }

/* ── Urgency strip ── */
.urgency-strip { padding: 22px 20px; background: rgba(217,161,113,0.04); border-top: 1px solid rgba(217,161,113,0.15); border-bottom: 1px solid rgba(217,161,113,0.15); position: relative; z-index: 1; }
.urgency-inner-wrap { max-width: 760px; margin: 0 auto; display: flex; gap: 14px; align-items: flex-start; }
.urgency-ico { flex-shrink: 0; margin-top: 3px; color: var(--primary-gold); }
.urgency-heading { font-size: .92rem; font-weight: 900; color: #fff; margin-bottom: 5px; }
.urgency-body { font-size: .875rem; color: rgba(255,255,255,0.52); line-height: 1.65; font-weight: 500; }
.urgency-body strong { color: var(--primary-gold); }

/* ── Urgency progress bar ── */
.urgency-bar-wrap { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.urgency-bar-track { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.10); max-width: 260px; }
.urgency-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary-gold), #EBC48E); transition: width 1s ease; }
.urgency-bar-label { font-size: .75rem; color: rgba(255,255,255,0.38); font-weight: 600; white-space: nowrap; }
.urgency-count-highlight { color: var(--primary-gold); font-weight: 900; }

/* ── Trust badges ── */
.trust-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; justify-content: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }
.trust-badge svg { flex-shrink: 0; opacity: .55; }
.trust-badges-left { justify-content: flex-start; }

/* ── P.S. block ── */
.ps-wrap { max-width: 700px; margin: 0 auto 48px; background: rgba(18,18,18,0.55); border: 1px solid rgba(217,161,113,0.15); border-radius: 14px; padding: 24px 28px; text-align: left; }
.ps-tag { font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-gold); margin-bottom: 8px; }
.ps-body { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

/* ── Billing toggle ── */
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 20px 0 36px; }
.toggle-lbl { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,0.38); transition: color 200ms; }
.toggle-lbl.active { color: #fff; }
.pricing-toggle-btn { width: 50px; height: 27px; border-radius: 999px; background: rgba(217,161,113,0.20); border: 1px solid rgba(217,161,113,0.32); cursor: pointer; padding: 3px; transition: background 300ms; }
.pricing-toggle-btn.on { background: var(--primary-gold); }
.toggle-thumb { width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.25); transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1); }
.pricing-toggle-btn.on .toggle-thumb { transform: translateX(23px); }
.saving-pill { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.28); color: #34D399; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
#pricing.annual .plan-savings { display: block !important; color: #10B981; font-weight: 700; font-size: 0.82rem; margin-top: 4px; }

/* ── "Agora é a hora" section ── */
.now-section { padding: 96px 24px; text-align: center; position: relative; overflow: hidden; background: #0d0d0e; border-top: 1px solid rgba(255,255,255,0.06); }
.now-section::before { content: ''; position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(217,161,113,0.07) 0%, transparent 65%); pointer-events: none; }
.now-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 900; letter-spacing: 0.20em; text-transform: uppercase; color: var(--primary-gold); margin-bottom: 18px; }
.now-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.12; color: #fff; margin-bottom: 18px; letter-spacing: -0.015em; }
.now-sub { font-size: .97rem; color: rgba(255,255,255,0.60); line-height: 1.72; max-width: 480px; margin: 0 auto 38px; font-weight: 500; }
.now-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary-gold); color: #050505; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 900; letter-spacing: 0.03em; padding: 18px 40px; border-radius: 14px; text-decoration: none; box-shadow: 0 4px 24px rgba(217,161,113,0.40), 0 1px 4px rgba(217,161,113,0.20); transition: background 300ms, transform 300ms, box-shadow 300ms; position: relative; z-index: 1; }
.now-btn:hover { background: #EBC48E; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217,161,113,0.55); }
.now-btn:active { transform: scale(0.96); transition-duration: 65ms; }
.now-microcopy { margin-top: 20px; font-size: 11.5px; color: rgba(255,255,255,0.35); font-weight: 600; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; z-index: 1; }
.now-microcopy svg { vertical-align: -1px; }

/* ── Guarantee section ── */
.guar-section { padding: 80px 24px; background: rgba(18,18,18,0.45); border-top: 1px solid rgba(217,161,113,0.12); border-bottom: 1px solid rgba(217,161,113,0.12); text-align: center; position: relative; z-index: 1; }
.guar-shield { width: 80px; height: 80px; border-radius: 20px; background: rgba(217,161,113,0.10); border: 1px solid rgba(217,161,113,0.28); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 0 28px rgba(217,161,113,0.35); }
.guar-shield svg { color: var(--primary-gold); }
.guar-eyebrow { display: block; font-size: 10.5px; font-weight: 900; letter-spacing: 0.20em; text-transform: uppercase; color: var(--primary-gold); margin-bottom: 14px; }
.guar-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.guar-text { font-size: .95rem; color: rgba(255,255,255,0.60); line-height: 1.72; max-width: 440px; margin: 0 auto; font-weight: 500; }
.guar-amount { color: var(--primary-gold); font-weight: 900; }
.guar-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.guar-pill { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); color: rgba(255,255,255,0.65); font-size: .8rem; font-weight: 700; padding: 7px 16px; border-radius: 999px; }

/* ── Gold border effect (shine wrapper — somente plano Equipe) ── */
.shine-wrapper { position: relative; border-radius: 18px; padding: 2px; display: flex; flex-direction: column; z-index: 2; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 0 32px rgba(217,161,113,0.28), 0 15px 40px rgba(0,0,0,0.3); }
.shine-wrapper:hover { transform: scale(1.05); box-shadow: 0 0 52px rgba(217,161,113,0.45), 0 15px 40px rgba(0,0,0,0.3); }
.shine-gradient { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold) 100%); z-index: 0; }
.shine-wrapper .price-card.highlight { transform: none !important; border: none !important; background: #151515 !important; box-shadow: none !important; margin: 0; flex: 1; z-index: 1; }
.shine-wrapper .price-card.highlight:hover { transform: none !important; }
.shine-wrapper .badge-popular { z-index: 3; }
@media (max-width: 768px) { .shine-wrapper, .shine-wrapper:hover { transform: scale(1) !important; box-shadow: 0 0 20px rgba(217,161,113,0.20), 0 10px 30px rgba(0,0,0,0.3); } }

/* ── Cookie banner ── */
.mastery-cookie-container { position: fixed; bottom: 0; transform: translateY(100%); left: 0; width: 100%; background: rgba(10,10,10,0.95); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-top: 1px solid rgba(217,161,113,0.3); padding: 20px 0; z-index: 9998; transition: transform 0.6s cubic-bezier(0.19,1,0.22,1); font-family: 'DM Sans', sans-serif; }
.mastery-cookie-container.show { transform: translateY(0); }
@media (max-width: 768px) { .mastery-cookie-container { bottom: 70px; } }

/* ── Hero secondary CTA link ── */
.hero-secondary-link { display: block; margin-top: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; letter-spacing: 0.02em; }
.hero-secondary-link:hover { color: var(--primary-gold); }
@media (max-width: 768px) { .hero-secondary-link { text-align: center; } }

/* ── Feature list checkmarks (substitui ✦) ── */
.feature-list li::before { content: ''; display: block; width: 14px; height: 14px; min-width: 14px; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9A171' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-size: contain; }

/* ══ HEADER FALLBACK ══ */
.header-fallback { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.header-fallback-brand { font-weight: 700; color: #fff; text-decoration: none; }
.header-fallback-cta { padding: 8px 18px !important; font-size: .85rem !important; }

/* ══ QUIZ DE SELEÇÃO DE PLANO ══ */
.plan-quiz { margin-bottom: 48px; background: rgba(18,18,18,0.5); border: var(--glass-border); border-radius: 16px; padding: 28px 32px; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.quiz-teaser { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.quiz-teaser-text { color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; }
.quiz-teaser-btn { background: transparent; border: 1px solid rgba(217,161,113,0.5); color: var(--primary-gold); padding: 10px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: background 0.2s, color 0.2s; letter-spacing: 0.5px; }
.quiz-teaser-btn:hover { background: rgba(217,161,113,0.1); }
.quiz-progress-wrap { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-bottom: 20px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--gold-gradient); border-radius: 2px; transition: width 0.4s ease; }
.quiz-step-label { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.quiz-question { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.4; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--text-light); padding: 14px 18px; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; text-align: left; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.quiz-option-btn:hover { border-color: rgba(217,161,113,0.6); background: rgba(217,161,113,0.07); }
.quiz-result-inner { text-align: center; }
.quiz-result-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 6px; }
.quiz-result-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary-gold); margin-bottom: 4px; }
.quiz-result-price { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 12px; }
.quiz-result-desc { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text-muted); max-width: 400px; margin: 0 auto 20px; line-height: 1.5; }
.quiz-result-cta { display: inline-block !important; width: auto !important; padding: 14px 32px !important; margin-bottom: 14px; }
.quiz-reset-btn { display: block; background: none; border: none; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; cursor: pointer; margin: 0 auto; transition: color 0.2s; }
.quiz-reset-btn:hover { color: var(--text-light); }
@media (max-width: 600px) { .plan-quiz { padding: 20px 18px; } .quiz-teaser { flex-direction: column; text-align: center; gap: 12px; } .quiz-question { font-size: 1.05rem; } }

/* ══ FORM BUTTON STATES ══ */
.form-submit.is-loading { opacity: .7; pointer-events: none; }
.form-submit.has-error { background-color: var(--danger-red) !important; color: #fff !important; }

/* ══ SECTION DISCLAIMER ══ */
.section-disclaimer { text-align: center; font-size: .72rem; color: rgba(255,255,255,0.25); margin-top: 18px; padding: 0 16px; }

/* ══ IRIS NOTIF ITEM ══ */
.iris-notif-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); animation: notif-in .3s ease; }
.iris-notif-icon { font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.iris-notif-body { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--text-light); line-height: 1.4; }
.iris-notif-tag { display: inline-block; font-size: .7rem; color: var(--primary-gold); border: 1px solid rgba(217,161,113,0.3); border-radius: 4px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; }
@keyframes notif-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.feature-list li[style]::before { display: none; }

/* ══ HERO IRIS DEMO ══ */
.iris-demo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(217,161,113,0.18), 0 32px 64px rgba(0,0,0,0.6);
}
.iris-demo-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Scan overlay */
.iris-scan-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
}
.iris-scan-line {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(217,161,113,0.5) 20%, #fff8ee 50%, rgba(217,161,113,0.5) 80%, transparent 100%);
    box-shadow: 0 0 16px 4px rgba(217,161,113,0.55);
    opacity: 0;
    top: 0;
}
@keyframes iris-scan-once {
    0%   { top: 0%;  opacity: 0; }
    5%   { opacity: 1; }
    90%  { opacity: 1; top: 96%; }
    100% { opacity: 0; top: 96%; }
}

/* Corner brackets */
.iris-scan-corners { position: absolute; inset: 12px; }
.iris-scan-corners span {
    position: absolute;
    width: 16px; height: 16px;
    border-color: rgba(217,161,113,0.7);
    border-style: solid;
    opacity: 0;
    transition: opacity .4s ease;
}
.iris-scan-corners span:nth-child(1) { top: 0; left: 0;  border-width: 2px 0 0 2px; }
.iris-scan-corners span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
.iris-scan-corners span:nth-child(3) { bottom: 0; left: 0;  border-width: 0 0 2px 2px; }
.iris-scan-corners span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* Formula card */
.iris-formula-card {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    background: rgba(5,5,5,0.9);
    border: 1px solid rgba(217,161,113,0.35);
    border-radius: 12px;
    padding: 14px 16px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.3,1.1);
    z-index: 5;
}
.iris-formula-card.show {
    opacity: 1;
    transform: translateY(0);
}
.iris-formula-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.iris-formula-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    color: rgba(255,255,255,0.5);
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}
.iris-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px rgba(46,204,113,0.7);
    animation: iris-dot-pulse 2s ease-in-out infinite;
}
@keyframes iris-dot-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
.iris-formula-shade {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-style: italic;
}
.iris-shade-swatch {
    width: 14px; height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}
.iris-formula-rows { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.iris-formula-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: .82rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .4s ease, transform .4s ease;
}
.iris-formula-row.show {
    opacity: 1;
    transform: translateX(0);
}
.iris-formula-qty {
    min-width: 34px;
    font-weight: 700;
    color: var(--primary-gold);
    font-variant-numeric: tabular-nums;
}
.iris-formula-prod { color: rgba(255,255,255,0.85); }
.iris-formula-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 8px;
    margin-top: 2px;
}

/* Scan grid — visível durante scanning */
.iris-scan-grid {
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        repeating-linear-gradient(0deg, rgba(217,161,113,.07) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(217,161,113,.07) 0 1px, transparent 1px 34px);
    transition: opacity .5s ease;
    pointer-events: none;
}

/* Estado scanning (adicionado via JS) */
.iris-scan-overlay.scanning .iris-scan-grid { opacity: 1; }
.iris-scan-overlay.scanning .iris-scan-line { animation: iris-scan-once 1.55s linear 2; }
.iris-scan-overlay.scanning .iris-scan-corners span { opacity: 1; }

/* Analysis chips */
.iris-chips {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 4;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    max-width: 88%;
    pointer-events: none;
}
.iris-chip {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--text-light);
    background: rgba(5,5,5,.82);
    border: 1px solid rgba(217,161,113,.22);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.3,1.2);
}
.iris-chip b { color: var(--primary-gold); font-weight: 700; }
.iris-chip.show { opacity: 1; transform: translateY(0); }

/* Hair fallback SVG */
.iris-hair-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.iris-hair-fallback svg { width: 100%; height: 100%; display: block; }
.iris-demo-photo { position: relative; z-index: 1; }

/* Formula cost */
.iris-formula-cost {
    margin-left: auto;
    color: rgba(255,255,255,.5);
    opacity: 0;
    transition: opacity .5s ease;
}
.iris-formula-cost b { color: var(--primary-gold); font-weight: 700; }
.iris-formula-cost.show { opacity: 1; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .iris-scan-line, .iris-scan-grid, .iris-scan-corners span,
    .iris-chip, .iris-formula-card, .iris-formula-row, .iris-formula-cost {
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .iris-formula-card { bottom: 10px; left: 10px; right: 10px; padding: 12px; }
    .iris-formula-row { font-size: .78rem; }
}

@media (max-width: 480px) {
    .iris-formula-card {
        left: 50%;
        right: auto;
        bottom: 8px;
        width: min(90%, 300px);
        transform: translateX(-50%) translateY(8px);
        padding: 8px 11px;
    }
    .iris-formula-card.show {
        transform: translateX(-50%) translateY(0);
    }
    .iris-formula-shade { display: none; }
    .iris-formula-header { margin-bottom: 5px; }
    .iris-formula-rows { gap: 2px; margin-bottom: 5px; }
    .iris-formula-row { font-size: .75rem; }
    .iris-formula-footer { padding-top: 5px; font-size: .66rem; }
    .iris-formula-cost { display: none; }
}

/* ══ IRIS CAMPAIGN DISCLAIMER ══ */
.campaign-disclaimer { margin-top: 2rem; }

/* ══ ÍRIS IDENTITY — GOLD ACCENT ON ALL CARDS ══ */
.iris-msg-stamp {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .58rem;
    color: rgba(217,161,113,0.65);
    margin-bottom: 5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}
.iris-msg-stamp img { opacity: 0.55; }

/* AI chat bubbles */
.ask-iris-msg.ask-iris-ai {
    border-left-color: rgba(217,161,113,0.5);
    border-left-width: 2px;
}
/* WA simulation messages */
.wa-msg { border-left: 2px solid rgba(217,161,113,0.28); }
/* Day comparison — good side */
.day-item.good { border-left: 2.5px solid rgba(217,161,113,0.4); }
/* Chemical calculator — saving highlight */
.chem-saving-bar { border-left-color: rgba(217,161,113,0.5); border-left-width: 2px; }

/* ══ HERO ASK IRIS (iris.html) ══ */
.hero-ask-iris { max-width: 460px; width: 100%; }
.hero-ask-iris .ask-iris-scenarios { margin-bottom: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.hero-ask-iris .ask-scenario-btn { font-size: .72rem; padding: 5px 10px; }
.hero-ask-iris .ask-iris-chat { box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.hero-ask-iris .ask-iris-messages { max-height: 240px; min-height: 200px; }
@media (max-width: 920px) { .hero-ask-iris { max-width: none; } }

/* ══════════════════════════════════════════
   MICROINTERAÇÕES
══════════════════════════════════════════ */

/* Botões — press tátil */
.btn:active {
    transform: translateY(1px) scale(0.97) !important;
    transition: transform 0.07s ease, box-shadow 0.07s ease !important;
}
.btn-plan:active {
    transform: scale(0.97) !important;
    transition: transform 0.07s ease !important;
}

/* btn-plan — hover lift + gold */
.btn-plan {
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-plan.btn-solid:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217,161,113,0.3);
}
.btn-plan.btn-outline:hover {
    border-color: rgba(217,161,113,0.55);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Feature links — seta desliza */
.feature-link-btn {
    transition: color 0.18s ease, letter-spacing 0.18s ease;
    display: inline-block;
}
.feature-link-btn:hover {
    color: var(--primary-gold);
    letter-spacing: 0.012em;
}

/* Nav links — underline dourado do centro para as bordas */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%; right: 50%;
    height: 1.5px;
    background: var(--primary-gold);
    border-radius: 999px;
    transition: left 0.22s ease, right 0.22s ease;
}
.nav-links a:hover::after { left: 0; right: 0; }

/* Trust signals — lift sutil */
.trust-signals span {
    transition: transform 0.18s ease, color 0.18s ease;
    cursor: default;
}
.trust-signals span:hover {
    transform: translateY(-2px);
    color: rgba(217,161,113,0.9);
}

/* Section tags — acende no hover */
.section-tag {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.section-tag:hover {
    box-shadow: 0 0 20px rgba(217,161,113,0.18);
    border-color: rgba(217,161,113,0.32);
}

/* Price cards — lift + gold glow */
.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:not(.highlight):hover {
    transform: translateY(-4px);
    border-color: rgba(217,161,113,0.18);
    box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.price-card.highlight:hover {
    box-shadow: 0 0 44px rgba(217,161,113,0.15), 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(217,161,113,0.42);
}

/* Bento item — gold border no hover */
.bento-item:hover { border-color: rgba(217,161,113,0.22); }

/* Hero tag — lift + gold glow */
.hero-tag {
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.hero-tag:hover {
    border-color: rgba(217,161,113,0.38);
    box-shadow: 0 0 22px rgba(217,161,113,0.14);
    transform: translateY(-1px);
}

/* FAQ summary — dourado no hover */
details summary { transition: color 0.18s ease; }
details summary:hover { color: rgba(217,161,113,0.9); }

/* prefers-reduced-motion — microinterações */
@media (prefers-reduced-motion: reduce) {
    .btn:active, .btn-plan:active, .btn-plan,
    .feature-link-btn, .trust-signals span,
    .section-tag, .price-card, details summary,
    .hero-tag { transition: none !important; }
    .nav-links a::after { transition: none !important; }
}

/* ══════════════════════════════════════════
   MICROINTERAÇÕES — iris.html
══════════════════════════════════════════ */

/* Scenario buttons — press tátil + gold acende */
.ask-scenario-btn:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.ask-scenario-btn:active {
    transform: translateY(0) scale(0.96) !important;
    transition: transform 0.07s ease !important;
}
.ask-scenario-btn.active {
    box-shadow: 0 0 18px rgba(217,161,113,0.18);
}

/* Iris learn steps — lift + gold */
.iris-learn-step {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}
.iris-learn-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

/* Day items — background highlight */
.day-item { transition: background 0.18s ease; }
.day-item:hover { background: rgba(255,255,255,0.03); }
.day-item.good:hover { background: rgba(16,185,129,0.06); }
.day-item.bad:hover { background: rgba(239,68,68,0.04); }

/* Campaign cards — lift */
.campaign-trigger, .campaign-whatsapp {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.campaign-trigger:hover, .campaign-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}

/* Comparison table rows — gold flash */
.iris-compare-table tbody tr { transition: background 0.15s ease; }
.iris-compare-table tbody tr:hover { background: rgba(217,161,113,0.05); }

/* Benefit cards — lift + gold border */
.benefit-card { transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border-color: rgba(217,161,113,0.45);
}

/* Stat items — lift sutil */
.stat-item { transition: transform 0.2s ease; cursor: default; }
.stat-item:hover { transform: translateY(-3px); }

/* prefers-reduced-motion — iris.html */
@media (prefers-reduced-motion: reduce) {
    .ask-scenario-btn, .iris-learn-step, .day-item,
    .campaign-trigger, .campaign-whatsapp, .benefit-card,
    .iris-compare-table tbody tr, .stat-item {
        transition: none !important;
        transform: none !important;
    }
}
