/* ==========================================================================
   STYLE.CSS - Site Profissional Simone Costa Hipnoterapia
   Design Híbrido Avançado (Combinação do Protótipo + Referência Cláudia Yumida)
   Cores: Off-White Quente, Nude Terapêutico, Terracota Suave, Verde Botânico Acetinado
   ========================================================================== */

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

:root {
    --primary-color: #8c5a3c;      /* Terracota elegante e acolhedor */
    --primary-hover: #72462c;      /* Tom terracota mais denso */
    --accent-green: #3a6351;       /* Verde botânico terapêutico */
    --accent-light: #e8ded2;       /* Bege suave de transição */
    --bg-light: #faf7f2;           /* Off-white quente e relaxante */
    --bg-card: #ffffff;            /* Branco puro para cartões e destaques */
    --text-dark: #2c2523;          /* Marrom profundo legível e suave */
    --text-muted: #665b57;         /* Texto secundário */
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(140, 90, 60, 0.08);
    --shadow-hover: 0 16px 36px rgba(140, 90, 60, 0.14);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

.section-container {
    max-width: 2580px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(140, 90, 60, 0.1);
    color: #8e642e;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge.light {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 48px;
}

/* ==========================================================================
   CABEÇALHO & NAV
   ========================================================================== */
.main-header {
    background-color: rgba(250, 247, 242, 0.94);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(140, 90, 60, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-green);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.nav-links .btn-nav {
    background-color: #b5a196;
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(140, 90, 60, 0.2);
}

.nav-links .btn-nav:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    position: relative;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 80vw; max-width: 320px;
    height: 100vh;
    background: var(--bg-light);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 1200;
    padding: 60px 32px;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}

.close-mobile-menu {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    font-size: 2.2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 90px 24px;
    background: linear-gradient(135deg, rgba(232, 222, 210, 0.6) 0%, rgba(250, 247, 242, 0.9) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1.2;
}

.eyebrow-tag {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-green);
    margin-bottom: 16px;
    display: block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.btn-primary {
    display: center;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 32px;
    border-radius: 70px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: 0 8px 24px rgba(140, 90, 60, 0.22);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(140, 90, 60, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero-image-wrapper {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.circle-image-container {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(140, 90, 60, 0.15);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   BOAS-VINDAS & PILARES
   ========================================================================== */
.welcome-section {
    background-color: var(--bg-light);
}

.welcome-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.welcome-subtext {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto 54px;
}

.welcome-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-pillar {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(140, 90, 60, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pillar-image-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 99, 81, 0.08);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--accent-green);
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-pillar p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-link {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.pillar-link:hover { color: var(--primary-color); }

/* ==========================================================================
   SOBRE MIM
   ========================================================================== */
.section-about {
    background: linear-gradient(190deg, #716c6575 0%, #2a27212e 100%);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(140, 90, 60, 0.08), transparent 45%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(280px, 550px) 2fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-panel {
    position: relative;
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff, #efe3d3);
    box-shadow: 0 20px 45px rgba(140, 90, 60, 0.16);
}

.about-image {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-green);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-text {
    background: #8e7b6c94;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid #1615157a;
    box-shadow: var(--shadow-soft);
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 16px;
    color: #0e0d0d;
}

.about-text p {
    color: #ededed;
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.highlight-item {
    background: rgb(189 179 172 / 84%);
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgb(135 75 41);
}

.highlight-item h4 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #080606;
    margin-bottom: 0;
}

/* ==========================================================================
   SERVIÇOS / ESPECIALIDADES
   ========================================================================== */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-item {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(140, 90, 60, 0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #2c2523;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   COMO FUNCIONA / ATENDIMENTO
   ========================================================================== */
.highlight-banner {
    background: linear-gradient(100deg, #281d16cf 20% 0%, #665b57 40%);
    border-radius: 28px;
    padding: 56px 40px;
    color: var(--white);
    box-shadow: 0 16px 40px rgba(58, 99, 81, 0.25);
}

.highlight-banner .about-text h2 {
    color: var(--white);
}

.highlight-banner .about-text p {
    color: #e2ece7;
}

.process-list {
    list-style: none;
    margin: 24px 0 32px;
}

.process-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2ece7;
    font-size: 0.98rem;
}

.process-list strong {
    color: var(--white);
}

.approach-lead {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.8;
}

.approach-desc {
    color: #89644f;
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================================================
   DEPOIMENTOS & VÍDEO
   ========================================================================== */
.section-depoimentos {
    background-color: var(--bg-light);
}

.testimonials-video {
    max-width: 720px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.video-player {
    width: 100%;
    display: block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

/* Espaço: galeria de imagens em formato de cards menores (estilo depoimentos) */
.space-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.space-card {
    background: var(--bg-card);
    padding: 12px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.space-card figure {
    margin: 0;
    width: 100%;
    text-align: center;
}

.space-card img {
    width: 100%;
    height: 600px; /* aumentado para melhor visualização */
    object-fit: cover;
    border-radius: 10px;
    display: block;
    cursor: zoom-in;
}

.space-card figcaption {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .space-grid { grid-template-columns: repeat(2, 1fr); }
    .space-card img { height: 160px; }
}

@media (max-width: 700px) {
    .space-grid { grid-template-columns: 1fr; }
    .space-card img { height: 430px; }
}

/* Lightbox (zoom) styles */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    padding: 32px;
}

.lightbox.open { display: flex; }

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-radius: 0; /* remove bordas arredondadas para preencher todo o espaço */
    background: transparent; /* sem fundo branco para evitar bordas pretas visíveis */
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    width: 40%;
    height: 80vh; /* preenche a altura da viewport */
    object-fit: cover; /* cobre toda a área (pode cortar em uma dimensão) */
    display: block;
    background: transparent;
}

.lightbox-caption {
    padding: 12px 16px;
    font-size: 0.98rem;
    color: #e3d9d6;
    background: transparent;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.94rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background-color: var(--accent-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-serif);
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-review-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.google-review-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.section-faq {
    background-color: var(--accent-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(140, 90, 60, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-green);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #2c2523;
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   CTA & FOOTER
   ========================================================================== */
.section-cta {
    background: linear-gradient(135deg, #f7f2ef 0%, #393939 100%);
    padding: 80px 24px;
    color: #2c2523;
}

.section-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    margin-bottom: 16px;
}

.section-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 36px;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large:hover {
    background-color: var(--bg-light);
    color: var(--primary-hover);
}

/* Botão Flutuante WPP */
.botao-wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.botao-wpp-float:hover {
    transform: scale(1.1);
}

.wpp-icon {
    width: 34px;
    height: 34px;
}

/* Footer */
.footer {
    background-color: #1f1a18;
    color: #a89f9b;
    padding: 60px 24px 24px;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1180px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.footer-subtitle {
    color: var(--accent-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-content h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-content a {
    color: #d1c7c2;
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--white);
}

.instagram-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: -4px;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: -4px;
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.82rem;

.footer-company {
    font-size: 8px;
    margin-top: 12px;
    opacity: 0.75;
}
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-container, .highlight-banner .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: center;
        text-align: center;
        padding: 0 12px;
    }

    .about-image-panel {
        margin: 0 auto;
        max-width: 420px;
        padding: 12px;
        border-radius: 22px;
        background: linear-gradient(145deg, #ffffff, #efe3d3);
    }

    .about-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
        display: block;
    }

    .about-text {
        text-align: left;
        max-width: 720px;
        margin: 0 auto;
        padding: 0 6px;
    }

    .hero-buttons { justify-content: center; }
    
    .welcome-services-grid, .services-grid, .testimonials-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .about-highlights { grid-template-columns: 1fr; }
    
    .circle-image-container {
        width: 280px;
        height: 280px;
    }
}
