:root {
    --primary: #f5c400;
    --primary-dark: #d4a700;
    --secondary: #ffffff;
    --accent: #ffe16a;
    --bg: #050505;
    --bg-alt: #111111;
    --card: #181818;
    --text: #ffffff;
    --text-light: #bdbdbd;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 8px 24px rgba(245, 196, 0, 0.12);
    --shadow-hover: 0 12px 30px rgba(245, 196, 0, 0.2);
    --radius: 18px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.08rem;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    box-shadow: 0 8px 18px rgba(245, 196, 0, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(245, 196, 0, 0.32);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(245, 196, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    transition: var(--transition);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(-2deg);
}

.logo-text {
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 4px;
    background: var(--white);
    display: block;
    transition: var(--transition);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #ffdb4d);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.12rem;
    max-width: 680px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 196, 0, 0.18);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 20px 26px;
    min-width: 180px;
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* SOBRE */
.sobre {
    background: var(--bg-alt);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.sobre-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-image:hover .sobre-img {
    transform: scale(1.04);
}

.sobre-text-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sobre-text p {
    font-size: 1.05rem;
    line-height: 1.85;
}

.sobre-features {
    display: grid;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 196, 0, 0.08);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature h3 {
    margin-bottom: 6px;
}

.feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* SERVIÇOS */
.servicos {
    background: var(--bg);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(245, 196, 0, 0.08);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(245, 196, 0, 0.28);
}

.servico-image {
    height: 200px;
    overflow: hidden;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.servico-card:hover .servico-image img {
    transform: scale(1.08);
}

.servico-content {
    padding: 24px;
    text-align: center;
}

.servico-content h3 {
    color: var(--text);
}

.preco {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
}

/* CONSULTORIA / PLANOS */
.consultoria {
    background: var(--bg-alt);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 26px;
}

.plano-card {
    background: var(--card);
    border: 1px solid rgba(245, 196, 0, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.destaque-plano {
    border: 1px solid var(--primary);
}

.plano-topo {
    margin-bottom: 20px;
}

.plano-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.plano-topo p {
    margin-bottom: 0;
}

.plano-preco {
    margin-bottom: 22px;
}

.plano-preco strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.plano-preco span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.plano-lista {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.plano-lista li {
    color: var(--text-light);
    padding-left: 22px;
    position: relative;
}

.plano-lista li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

/* ANTES E DEPOIS */
.destaques {
    background: var(--bg);
}

.antes-depois-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.antes-depois-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(245, 196, 0, 0.08);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.antes-depois-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.antes-depois-imagens {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.imagem-box {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: 100%;
    min-height: 320px;
    background: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.imagem-box-unica {
    min-height: 320px;
}

.imagem-box img,
.antes-depois-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    transition: var(--transition);
}

.antes-depois-content {
    margin-top: 20px;
    padding: 0 10px;
}

.antes-depois-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.antes-depois-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.motivacional {
    display: block;
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.4;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
}

.imagem-box img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.imagem-box span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.78);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.antes-depois-content h3 {
    color: var(--text);
}

/* BENEFÍCIOS */
.beneficios {
    background: linear-gradient(135deg, #d4a700, #f5c400);
    color: var(--black);
}

.beneficios .section-header h2,
.beneficios .section-header p {
    color: var(--black);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.beneficio-card {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.beneficio-card h3,
.beneficio-card p {
    color: var(--black);
}

.beneficio-card p {
    margin-bottom: 0;
}

/* DEPOIMENTOS */
.depoimentos {
    background: var(--bg-alt);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.depoimento-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 0; /* Removido padding para a foto sangrar */
    border: 1px solid rgba(245, 196, 0, 0.08);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Altura mínima para a foto aparecer bem */
}

.depoimento-full-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.depoimento-full-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.depoimento-content-reveal {
    position: relative;
    z-index: 2;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

@media (hover: hover) {
    .depoimento-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-color: var(--primary);
    }

    .depoimento-card:hover .depoimento-full-photo {
        opacity: 0;
        transform: scale(1.05); /* Efeito suave de zoom ao sumir */
    }

    .depoimento-card:hover .depoimento-content-reveal {
        opacity: 1;
        transform: translateY(0);
        background: rgba(10, 10, 10, 0.98); /* Fundo sólido para leitura no hover */
    }
}

/* Responsivo Mobile: Mostra o texto com a foto de fundo sutil para acessibilidade */
@media (max-width: 768px) {
    .depoimento-content-reveal {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
        padding: 24px;
        min-height: 400px;
    }
    
    .depoimento-full-photo {
        opacity: 0.5; /* Deixa a foto como fundo sutil */
    }
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-info span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.depoimento-card > p {
    font-style: italic;
    line-height: 1.8;
}

.depoimento-stars {
    color: var(--primary);
    letter-spacing: 3px;
}

/* FAQ */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(245, 196, 0, 0.08);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    background: var(--card);
    border: none;
    color: var(--text);
    padding: 22px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #1d1d1d;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--bg-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 24px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* CONTATO */
.contato {
    background: var(--bg-alt);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contato-cta {
    max-width: 820px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid rgba(245, 196, 0, 0.08);
    box-shadow: var(--shadow);
    padding: 34px;
}

.contato-info-centralizado {
    align-items: center;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: center;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text);
    margin-bottom: 6px;
}

.info-item p {
    margin-bottom: 0;
}

.contato-botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

/* BOTÕES FIXOS */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 58px;
    height: 58px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    backdrop-filter: blur(14px);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.floating-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.floating-btn-text {
    white-space: nowrap;
}

.floating-btn-ai {
    background: linear-gradient(135deg, var(--primary), #ffffff);
    color: var(--black);
    border: 2px solid var(--primary);
    animation: pulse-ai 3s infinite;
}

@keyframes pulse-ai {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(245, 196, 0, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 196, 0, 0);
        transform: scale(1);
    }
}

.floating-btn-ai:hover {
    box-shadow: 0 14px 30px rgba(245, 196, 0, 0.4);
    animation: none;
    transform: translateY(-5px) scale(1.1);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1fb955);
    color: #ffffff;
}

.floating-btn-whatsapp:hover {
    background: linear-gradient(135deg, #21c45f, #1aa44c);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

/* MODAL CHAT IA */
.ai-chat-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.ai-chat-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ai-chat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.ai-chat-window {
    position: absolute;
    right: 18px;
    bottom: 22px;
    width: min(420px, calc(100vw - 24px));
    height: min(700px, calc(100vh - 32px));
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    border: 1px solid rgba(245, 196, 0, 0.18);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s ease;
}

.ai-chat-modal.active .ai-chat-window {
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 16px;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.14), rgba(245, 196, 0, 0.04));
    border-bottom: 1px solid rgba(245, 196, 0, 0.12);
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.24);
}

.ai-chat-header h3 {
    margin-bottom: 2px;
    font-size: 1rem;
    color: var(--text);
}

.ai-chat-header p {
    margin-bottom: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.ai-chat-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(245, 196, 0, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.ai-chat-close:hover {
    background: rgba(245, 196, 0, 0.12);
    color: var(--primary);
}

.ai-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 196, 0, 0.05), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-chat-messages::-webkit-scrollbar {
    width: 8px;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(245, 196, 0, 0.22);
    border-radius: 999px;
}

.ai-message {
    display: flex;
}

.ai-message-bot {
    justify-content: flex-start;
}

.ai-message-user {
    justify-content: flex-end;
}

.ai-message-bubble {
    max-width: 85%;
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
    word-break: break-word;
}

.ai-message-bot .ai-message-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(245, 196, 0, 0.1);
    border-top-left-radius: 8px;
}

.ai-message-user .ai-message-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    border-top-right-radius: 8px;
    font-weight: 600;
}

.ai-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 18px 18px;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    max-height: 200px;
    overflow: hidden;
}

.ai-chat-suggestions.hidden {
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    padding-bottom: 0;
    pointer-events: none;
}

.ai-suggestion-btn {
    border: 1px solid rgba(245, 196, 0, 0.25);
    background: rgba(245, 196, 0, 0.05);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.ai-suggestion-btn:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 196, 0, 0.2);
}

/* NOVO BOTÃO 'MAIS DÚVIDAS' */
.ai-chat-more-questions {
    padding: 0 18px 18px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .ai-chat-more-questions {
        padding: 0 14px 14px;
    }
}

.ai-more-btn {
    background: rgba(245, 196, 0, 0.05);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.ai-more-btn:hover {
    background: var(--primary);
    color: var(--black);
    transform: scale(1.02);
}

.ai-chat-footer {
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(245, 196, 0, 0.1);
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
}

.ai-chat-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #6ef0a0;
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ai-chat-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.ai-chat-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-input {
    flex: 1;
    height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(245, 196, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.ai-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ai-chat-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.1);
}

.ai-chat-send {
    height: 52px;
    min-width: 96px;
    padding: 0 18px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.ai-chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245, 196, 0, 0.22);
}

/* FOOTER */
.footer {
    background: #030303;
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 34px;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 196, 0, 0.08);
    border: 1px solid rgba(245, 196, 0, 0.18);
    color: var(--primary);
    transition: var(--transition);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 10px 22px rgba(245, 196, 0, 0.22);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.privacidade {
    background: #000;
    padding: 38px 0;
}

.privacidade h3 {
    margin-bottom: 12px;
}

.privacidade p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        order: -1;
    }

    .hero .container {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .antes-depois-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        gap: 18px;
        padding: 28px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 120px 0 60px;
    }

    section {
        padding: 70px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat {
        width: 100%;
    }

    .antes-depois-grid {
        grid-template-columns: 1fr;
    }

    .antes-depois-imagens {
        grid-template-columns: 1fr;
    }

    .imagem-box,
    .imagem-box-unica {
        min-height: auto;
        padding: 10px;
    }

    .imagem-box img,
    .antes-depois-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .contato-botoes {
        flex-direction: column;
        width: 100%;
    }

    .contato-botoes .btn {
        width: 100%;
    }

    .floating-actions {
        right: 14px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-btn {
        height: 54px;
        min-width: 54px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .ai-chat-window {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
        height: min(85vh, 850px);
        border-radius: 28px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    }

    .ai-chat-header {
        padding: 14px 16px;
    }

    .ai-chat-messages {
        padding: 16px 14px;
        gap: 10px;
    }

    .ai-message-bubble {
        font-size: 0.92rem;
        padding: 11px 14px;
        max-width: 90%;
    }

    .ai-chat-footer {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ai-chat-whatsapp-link {
        width: 100%;
        margin-bottom: 12px;
        height: 44px;
        font-size: 0.85rem;
    }

    .ai-chat-form {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .ai-chat-input {
        height: 46px; /* Ajuste para não ficar tão alto */
        font-size: 0.9rem;
    }

    .ai-chat-send {
        height: 46px;
        min-width: 80px;
        padding: 0 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    .logo-img {
        height: 42px;
    }
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .contato-info {
        padding: 24px 18px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
    }

    .floating-btn {
        height: 50px;
        min-width: 50px;
        border-radius: 999px;
    }

    .floating-btn-text {
        font-size: 0.84rem;
    }

    .ai-chat-header {
        padding: 14px;
    }

    .ai-chat-header p {
        font-size: 0.8rem;
    }

    .ai-chat-messages {
        padding: 14px;
    }

    .ai-chat-suggestions {
        padding: 0 14px 14px;
    }

    .ai-suggestion-btn {
        width: 100%;
        text-align: left;
        border-radius: 14px;
    }

    .ai-chat-input,
    .ai-chat-send {
        height: 44px;
    }
}

/* SISTEMA DE ANIMAÇÃO AO ROLAR (REVEAL UX PREMIUM) */
.hero-badge,
.hero-content h1,
.hero-subtitle,
.hero-buttons,
.servico-card, 
.plano-card, 
.antes-depois-card, 
.beneficio-card, 
.depoimento-card, 
.faq-item, 
.feature, 
.stat, 
.sobre-image, 
.contato-info {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

/* Efeito Cascata (Staggering) para Grids */
.servico-card:nth-child(2), .plano-card:nth-child(2), .beneficio-card:nth-child(2) { transition-delay: 0.1s; }
.servico-card:nth-child(3), .plano-card:nth-child(3), .beneficio-card:nth-child(3) { transition-delay: 0.2s; }
.servico-card:nth-child(4), .plano-card:nth-child(4), .beneficio-card:nth-child(4) { transition-delay: 0.3s; }
.antes-depois-card:nth-child(2) { transition-delay: 0.15s; }
.antes-depois-card:nth-child(3) { transition-delay: 0.25s; }
.antes-depois-card:nth-child(4) { transition-delay: 0.35s; }

.hero-badge.in-view,
.hero-content h1.in-view,
.hero-subtitle.in-view,
.hero-buttons.in-view,
.servico-card.in-view, 
.plano-card.in-view, 
.antes-depois-card.in-view, 
.beneficio-card.in-view, 
.depoimento-card.in-view, 
.faq-item.in-view, 
.feature.in-view, 
.stat.in-view, 
.sobre-image.in-view, 
.contato-info.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Efeito Cascata Hero */
.hero-badge { transition-delay: 0.1s; }
.hero-content h1 { transition-delay: 0.2s; }
.hero-subtitle { transition-delay: 0.3s; }
.hero-buttons { transition-delay: 0.4s; }

/* Garante que o hover funcione mesmo com in-view aplicando a subida */
@media (hover: hover) {
    .servico-card.in-view:hover,
    .plano-card.in-view:hover,
    .antes-depois-card.in-view:hover,
    .beneficio-card.in-view:hover {
        transform: translateY(-8px) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .plano-card.in-view:hover, 
    .servico-card.in-view:hover,
    .antes-depois-card.in-view:hover {
        box-shadow: 0 12px 30px rgba(245, 196, 0, 0.2) !important;
    }

    .depoimento-card.in-view:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
    }

    .depoimento-card .depoimento-content-reveal {
        opacity: 0 !important;
        transform: translateY(60px) !important;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .depoimento-card.in-view:hover .depoimento-content-reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(10, 10, 10, 0.98) !important;
    }

    .depoimento-card.in-view:hover .depoimento-full-photo {
        opacity: 0 !important;
    }
}

/* CHAT BUTTON LINKS (MARKDOWN) */
.chat-btn-link {
    display: block;
    background: var(--primary);
    color: var(--black);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-align: center;
    margin-top: 12px;
    text-decoration: none;
    transition: var(--transition);
    max-width: fit-content;
    word-break: break-all;
    font-size: 0.95rem;
}

.chat-btn-link:hover {
    transform: scale(1.05);
    background: #ffdb4d;
    box-shadow: 0 4px 15px rgba(245, 196, 0, 0.3);
}

/* CUSTOM SCROLLBAR PARA O CHAT */
.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}
.ai-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}