﻿:root {
    --primary: #b36b7a;
    --secondary: #f5d1cc;
    --accent: #422d33;
    --accent-dark: #2a1c24;
    --bg: #f9f1ef;
    --bg-alt: #fff6f4;
    --surface: #ffffff;
    --text: #422d33;
    --text-light: #7d626a;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(179, 107, 122, 0.12);
    --radius: 28px;
    --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, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

p, label, span {
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    border: 1px solid rgba(67, 47, 52, 0.1);
}

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

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--secondary);
}

.header {
    position: fixed;
    inset: 0 0 auto;
    background: rgba(255, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(67, 47, 52, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo img {
    max-height: 55px;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 249, 246, 0.78);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-copy {
    color: var(--accent);
}

.hero-copy h1 {
    color: var(--accent-dark);
}

.hero-copy p {
    color: rgba(67, 47, 52, 0.8);
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.hero-highlights {
    display: grid;
    gap: 10px;
    color: rgba(67, 47, 52, 0.8);
    font-weight: 500;
}

.hero-highlights a {
    color: var(--primary);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 30px 90px rgba(67, 47, 52, 0.14);
    text-align: center;
}

.hero-logo {
    width: 110px;
    margin: 0 auto 20px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

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

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

.sobre-image {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sobre-content p {
    margin-bottom: 20px;
    color: rgba(67, 47, 52, 0.82);
}

.sobre-list {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.sobre-item {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-weight: 600;
    color: var(--accent);
}

.servicos, .cursos, .lojinha, .depoimentos, .faq, .agendamento, .contato {
    background: var(--surface);
    padding: 90px 0;
}

.cards-grid, .courses-grid, .depoimentos-grid, .contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card, .course-card, .depoimento-card, .google-card, .depoimento-form-card, .faq-item, .agenda-form, .agenda-info, .contato-card {
    background: var(--white);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.service-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.service-name {
    font-size: 1.2rem;
    color: var(--accent);
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.course-card {
    min-height: 160px;
}

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

.avatar-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.depoimento-stars {
    margin-top: 16px;
    color: var(--primary);
}

.depoimento-actions {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 28px;
    margin-top: 50px;
}

.checkbox-inline {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(67, 47, 52, 0.82);
    margin: 15px 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 26px;
    background: #fff7f5;
    border: 1px solid rgba(179, 107, 122, 0.12);
    overflow: hidden;
    padding: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: transparent;
    padding: 24px 26px;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 0 26px 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.agendamento-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
}

.agenda-form, .depoimento-form-card, .chat-form {
    display: grid;
    gap: 14px;
}

.agenda-form input, .agenda-form select, .agenda-form textarea,
.depoimento-form-card input, .depoimento-form-card textarea,
.chat-form input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(179, 107, 122, 0.28);
    border-radius: 20px;
    background: #fff;
    color: var(--accent);
    font-family: inherit;
}

.agenda-note {
    color: rgba(67, 47, 52, 0.75);
    font-size: 0.95rem;
}

.agenda-info {
    display: grid;
    gap: 18px;
    align-content: start;
}

.agenda-info .info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* Chat Widget Flutuante movido para o Lado Esquerdo */
.chat-widget {
    position: fixed;
    left: 22px;
    bottom: 96px;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(67, 47, 52, 0.22);
    z-index: 1200;
    display: grid;
    gap: 16px;
    padding: 20px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.chat-widget.closed {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.chat-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.chat-box {
    height: 240px;
    padding: 16px;
    background: #fff5f4;
    border: 1px solid rgba(179, 107, 122, 0.16);
    border-radius: 20px;
    overflow-y: auto;
    display: grid;
    gap: 12px;
}

.chat-suggestions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.suggestion-btn {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(179, 107, 122, 0.25);
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.suggestion-btn:hover {
    background: var(--secondary);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.9rem;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1s infinite;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: #fff;
    color: var(--accent);
}

.chat-message.user {
    margin-left: auto;
    background: var(--primary);
    color: var(--white);
}

/* Botão da Naty na Esquerda e WhatsApp na Direita */
.bot-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1100;
    border: none;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(67, 47, 52, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: var(--white);
    color: var(--accent);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    border: none;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(67, 47, 52, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: #25d366;
    color: var(--white);
}

.bot-float:hover, .whatsapp-float:hover {
    transform: translateY(-2px);
}

/* Padroniza o container e a imagem dos ícones de contato */
.contato-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.credits {
    text-align: center;
    padding: 30px 0 40px;
    color: rgba(67, 47, 52, 0.72);
    font-size: 0.95rem;
    background: var(--surface);
}

.credits a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 980px) {
    .hero-grid, .sobre-grid, .agendamento-grid, .depoimento-actions {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        background: rgba(255, 249, 246, 0.98);
        transform: translateY(-130%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-toggle {
        display: flex;
    }
}