:root {
    --primary: #7d5ba6;
    --primary-dark: #67448e;
    --secondary: #bfe8dc;
    --accent: #e6dcf5;
    --bg: rgba(250, 247, 252, 0.90);
    --bg-alt: rgba(243, 238, 248, 0.92);
    --card: #ffffff;
    --text: #3f3450;
    --text-light: #6f6483;
    --white: #ffffff;
    --black: #2f243d;
    --shadow: 0 8px 24px rgba(125, 91, 166, 0.10);
    --shadow-hover: 0 12px 30px rgba(125, 91, 166, 0.16);
    --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-image: url('./assets/fundo-vela.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    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;
    color: var(--white);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

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(--white);
    box-shadow: 0 8px 18px rgba(125, 91, 166, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(125, 91, 166, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 252, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(125, 91, 166, 0.08);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(125, 91, 166, 0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    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(--primary);
    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(85, 55, 116, 0.84) 0%, rgba(125, 91, 166, 0.58) 55%, rgba(191, 232, 220, 0.30) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #cfeee5, #bfe8dc);
    color: #46665d;
    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;
    color: rgba(255, 255, 255, 0.92);
}

.hero-subtitle strong {
    color: var(--white);
}

.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.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 20px 26px;
    width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.84);
}

/* SOBRE */
.sobre {
    background: var(--bg-alt);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    max-width: 440px; /* Mantém a proporção e altura ideais no desktop */
    aspect-ratio: 2 / 3; /* Proporção exata das fotos (1068x1600) para mostrar a foto inteira */
    height: auto;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.sobre-image-container:hover .sobre-img {
    transform: scale(1.05);
}

.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.75);
    border: 1px solid rgba(125, 91, 166, 0.10);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 18px rgba(125, 91, 166, 0.06);
}

.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: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.servico-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(125, 91, 166, 0.08);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(125, 91, 166, 0.24);
}

.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(--accent);
    color: var(--primary-dark);
    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(125, 91, 166, 0.10);
    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(--white);
    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;
}

/* ÁREAS DE ATUAÇÃO / IMAGENS */
.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(125, 91, 166, 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: #f7f3fb;
    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;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.imagem-box span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(103, 68, 142, 0.90);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.antes-depois-content h3 {
    color: var(--text);
}

/* BENEFÍCIOS */
.beneficios {
    background: linear-gradient(135deg, #efe7f8, #bfe8dc);
    color: var(--black);
}

.beneficios .section-header h2,
.beneficios .section-header p {
    color: var(--text);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(125, 91, 166, 0.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(125, 91, 166, 0.06);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.92);
}

.beneficio-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.beneficio-card h3,
.beneficio-card p {
    color: var(--text);
}

.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: 28px;
    border: 1px solid rgba(125, 91, 166, 0.08);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--secondary);
    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(125, 91, 166, 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: #faf7fd;
}

.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: #f8f4fb;
    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(125, 91, 166, 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(125, 91, 166, 0.10);
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(93, 67, 124, 0.18);
    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, rgba(125, 91, 166, 0.98), rgba(103, 68, 142, 0.98));
    color: var(--white);
}

.floating-btn-ai:hover {
    box-shadow: 0 14px 30px rgba(125, 91, 166, 0.28);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #6fc2ab, #58b39a);
    color: #ffffff;
}

.floating-btn-whatsapp:hover {
    background: linear-gradient(135deg, #67baa4, #4ca38d);
    box-shadow: 0 14px 30px rgba(95, 182, 157, 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(68, 49, 92, 0.48);
    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, #ffffff 0%, #f8f4fb 100%);
    border: 1px solid rgba(125, 91, 166, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(93, 67, 124, 0.22);
    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(125, 91, 166, 0.12), rgba(191, 232, 220, 0.20));
    border-bottom: 1px solid rgba(125, 91, 166, 0.10);
}

.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(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(125, 91, 166, 0.18);
}

.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: var(--text-light);
    line-height: 1.4;
}

.ai-chat-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(125, 91, 166, 0.14);
    background: rgba(125, 91, 166, 0.04);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.ai-chat-close:hover {
    background: rgba(125, 91, 166, 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(125, 91, 166, 0.05), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 238, 248, 0.95));
}

.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(125, 91, 166, 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(125, 91, 166, 0.06);
    color: var(--text);
    border: 1px solid rgba(125, 91, 166, 0.08);
    border-top-left-radius: 8px;
}

.ai-message-user .ai-message-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-top-right-radius: 8px;
    font-weight: 600;
}

.ai-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 18px 18px;
}

.ai-suggestion-btn {
    border: 1px solid rgba(125, 91, 166, 0.14);
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.88rem;
    line-height: 1.3;
}

.ai-suggestion-btn:hover {
    background: rgba(125, 91, 166, 0.10);
    color: var(--primary);
    transform: translateY(-2px);
}

.ai-chat-footer {
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(125, 91, 166, 0.08);
    background: rgba(255, 255, 255, 0.72);
    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(111, 194, 171, 0.14);
    color: #458b77;
    border: 1px solid rgba(111, 194, 171, 0.22);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ai-chat-whatsapp-link:hover {
    background: rgba(111, 194, 171, 0.22);
    transform: translateY(-2px);
}

.ai-chat-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-input {
    flex: 1;
    height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(125, 91, 166, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    outline: none;
    font-size: 0.95rem;
}

.ai-chat-input::placeholder {
    color: rgba(111, 100, 131, 0.75);
}

.ai-chat-input:focus {
    border-color: rgba(125, 91, 166, 0.48);
    box-shadow: 0 0 0 4px rgba(125, 91, 166, 0.08);
}

.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(--white);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.ai-chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(125, 91, 166, 0.22);
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 160px, #6b4d8f 169px, #6b4d8f 100%);
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 34px;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.84);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.80);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #dff7f0;
}

.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(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transition: var(--transition);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.14);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom a:hover {
    color: #dff7f0;
}

.privacidade {
    background: #f3eef8;
    padding: 38px 0;
}

.privacidade h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.privacidade p {
    margin-bottom: 0;
    font-size: 0.92rem;
    color: var(--text-light);
}

/* 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(250, 247, 252, 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 {
        width: 48px;
        height: 48px;
        min-width: 48px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-btn-text {
        display: none;
    }

    .ai-chat-window {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
        height: min(78vh, 700px);
        border-radius: 22px;
    }

    .ai-chat-footer {
        padding: 14px;
    }

    .ai-chat-form {
        flex-direction: column;
        align-items: stretch;
    }

    .ai-chat-send {
        width: 100%;
    }
}

@media (max-width: 480px) {
    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;
    }



    .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: 48px;
    }
}

/* Scroll Reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* CRFa */
.crfa-text {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
    color: var(--text-light);
}

/* Hero Slider & Sobre Slider */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}

.sobre-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
}

.hero-bg-image.active,
.sobre-img.active {
    opacity: 1;
}

/* Escritório */
.escritorio {
    background: var(--bg-alt);
}

.escritorio-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0 20px;
}

.escritorio-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollOffice 45s linear infinite;
}

.escritorio-carousel:hover .escritorio-track {
    animation-play-state: paused;
}

@keyframes scrollOffice {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.escritorio-img-wrapper {
    width: 320px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.escritorio-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.escritorio-img-wrapper:hover img {
    transform: scale(1.05);
}

.badge-domicilio {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 15px;
}

/* Carousel Global (Atuação & Depoimentos) */
.carousel-container,
.depoimentos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.carousel-track,
.depoimentos-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollCarousel 25s linear infinite;
}

.carousel-track:hover,
.depoimentos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

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

.carousel-slide {
    width: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 91, 166, 0.08);
}

.carousel-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.slide-content {
    padding: 20px;
    text-align: center;
}

.slide-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.slide-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.depoimento-card {
    width: 350px;
    white-space: normal;
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(125, 91, 166, 0.08);
    box-shadow: var(--shadow);
}

/* Instagram */
.instagram-section {
    background: var(--bg);
}

.insta-post {
    max-width: 850px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 91, 166, 0.08);
}

.insta-img-wrapper img {
    width: 100%;
    height: auto;
}

.insta-actions {
    padding: 15px;
    text-align: center;
}

.btn-like {
    display: inline-block;
    padding: 10px 20px;
    background: #ffeded;
    color: #e1306c;
    border-radius: 20px;
    font-weight: bold;
    border: 1px solid #ffc2d1;
    transition: all 0.3s ease;
}

.btn-like:hover {
    background: #e1306c;
    color: #fff;
    transform: scale(1.05);
}

/* Pulsing */
.palpitando,
.pulse-btn {
    animation: pulseHeart 1.5s infinite;
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 91, 166, 0.7);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(125, 91, 166, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 91, 166, 0);
    }
}

@media (max-width: 768px) {
    .insta-post {
        max-width: 400px;
    }
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1501;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -45px;
        right: 10px;
        font-size: 3rem;
    }
}