@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-white: #ffffff;
    --color-sand: #faf9f6;
    --color-sand-dark: #f2ede4;
    --color-beige: #e5decb;
    --color-beige-dark: #cfc5b2;
    --color-olive: #C08070; /* Cor da fonte personalizada */
    --color-olive-light: #fdfaf7;
    --color-moss: #C08070; /* Cor das fontes principais */
    --color-terracotta: #C08070; /* Botões e destaques acompanham a cor */
    --color-terracotta-light: #faf0ee;
    --color-gray-light: #f8f7f5;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Barlow', sans-serif;
    
    /* Text Colors */
    --color-text-dark: #C08070;
    --color-text-body: #C08070;
    --color-text-muted: #d5a396;
    
    /* Transitions & Animations */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease;
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-body);
    background-color: var(--color-sand);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-moss);
    font-weight: 400;
    line-height: 1.25;
}

p {
    font-size: 1.05rem;
    color: var(--color-text-body);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-sand);
}
::-webkit-scrollbar-thumb {
    background: var(--color-beige-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-olive);
}

/* ==========================================================================
   Reusable Utility Components
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.reveal.active .section-title,
.reveal .section-title {
    /* default hidden state inherited */
}

.reveal.active .section-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-olive);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.05s,
                transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.05s,
                filter 1s cubic-bezier(0.25, 1, 0.5, 1) 0.05s,
                letter-spacing 1s cubic-bezier(0.25, 1, 0.5, 1) 0.05s;
}

.reveal.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
                transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
                filter 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.reveal.active .section-description {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

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

.btn-primary:hover {
    background-color: var(--color-moss);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 53, 39, 0.15);
}

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

.btn-outline:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-terracotta {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.btn-terracotta:hover {
    background-color: #b57a63;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(181, 122, 99, 0.2);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
                transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

header.scrolled {
    background-color: rgba(251, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(234, 229, 219, 0.5);
}

.nav-container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo .logo-black {
    display: block;
}

.logo .logo-white {
    display: none;
}

/* On Hero header (if transparent/dark context) */
header.hero-nav .logo .logo-black {
    display: none;
}
header.hero-nav .logo .logo-white {
    display: block;
}
header.hero-nav {
    color: var(--color-white);
}

header.hero-nav.scrolled {
    color: var(--color-text-body);
}
header.hero-nav.scrolled .logo .logo-black {
    display: block;
}
header.hero-nav.scrolled .logo .logo-white {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85); /* Slightly darker for contrast */
}

/* Subtle Zoom effect on Hero background */
.hero-bg img {
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 53, 39, 0.4) 0%, rgba(43, 53, 39, 0.2) 60%, rgba(43, 53, 39, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 700px;
    padding: 0 20px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: 8%;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    color: var(--color-white) !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.08);
    opacity: 0;
    text-transform: uppercase;
    animation: heroTaglineReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

/* Decorative line under tagline */
.hero-tagline::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
    margin-top: 1rem;
    animation: lineExpand 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--color-white) !important;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroTitleReveal 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 580px;
    margin-left: 0;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroSubtitleReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.2s forwards;
}

.hero-cta {
    opacity: 0;
    animation: heroCTAReveal 1s cubic-bezier(0.25, 1, 0.5, 1) 1.7s forwards;
}

.hero-cta .btn {
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero Text Keyframes */
@keyframes heroTaglineReveal {
    from {
        opacity: 0;
        transform: translateY(-15px);
        letter-spacing: 10px;
        filter: blur(4px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
        letter-spacing: 6px;
        filter: blur(0);
    }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(3px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
        filter: blur(0);
    }
}

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

@keyframes lineExpand {
    from { width: 0; }
    to { width: 60px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-indicator-mouse {
    width: 20px;
    height: 32px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

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

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

/* ==========================================================================
   Sobre Section
   ========================================================================== */
#sobre {
    background-color: var(--color-sand);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.sobre-content {
    padding-right: 2rem;
}

.sobre-content .section-subtitle {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                filter 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.reveal.active .sobre-content .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.sobre-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s;
}

.reveal.active .sobre-content h2 {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-body);
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                filter 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}

.sobre-text p:nth-child(2) {
    transition-delay: 0.6s;
}

.reveal.active .sobre-text p {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.sobre-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sobre-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

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

/* Add a floating architectural detail border */
.sobre-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--border-radius-lg) - 4px);
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   Serviços Section
   ========================================================================== */
#psicoterapia {
    background-color: #88987F;
    color: var(--color-white);
}

#psicoterapia .section-title,
#psicoterapia .section-subtitle,
#psicoterapia .section-description {
    color: var(--color-white) !important;
}

.psicoterapia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.psicoterapia-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.psicoterapia-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.psicoterapia-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.psicoterapia-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.psicoterapia-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.psicoterapia-card p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.psicoterapia-cta {
    text-align: center;
    margin-top: 3rem;
}

.psicoterapia-cta .btn {
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    color: #88987F;
}

.psicoterapia-cta .btn:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* ==========================================================================
   Oficinas Terapêuticas Section
   ========================================================================== */
#oficinas {
    background-color: var(--color-sand);
    border-top: 1px solid rgba(234, 229, 219, 0.5);
}

.oficinas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.oficina-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(234, 229, 219, 0.5);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.oficina-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(217, 52, 57, 0.06);
    border-color: var(--color-beige-dark);
}

.oficina-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.oficina-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.oficina-card:hover .oficina-img {
    transform: scale(1.05);
}

.oficina-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.oficina-body h3 {
    font-size: 1.45rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.oficina-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.oficina-btn {
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-terracotta);
    border-bottom: 2px solid var(--color-terracotta-light);
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.oficina-card:hover .oficina-btn {
    color: var(--color-text-dark);
    border-bottom-color: var(--color-terracotta);
}

/* Workshops Testimonials Section styling */
.oficinas-testimonials {
    margin-top: 5rem;
    text-align: center;
    border-top: 1px dashed rgba(234, 229, 219, 0.6);
    padding-top: 4rem;
}

.oficinas-testimonials-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-terracotta);
    margin-bottom: 2rem;
    display: block;
}

.oficinas-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.oficina-testimonial-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(234, 229, 219, 0.4);
    text-align: left;
    position: relative;
}

.oficina-testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
}

.oficina-testimonial-card strong {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Oficina Modal Styling
   ========================================================================== */
.oficina-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 38, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.oficina-modal.active {
    display: flex;
    opacity: 1;
}

.oficina-modal-content {
    background-color: var(--color-white);
    width: 90%;
    max-width: 900px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.oficina-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-text-dark);
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.oficina-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.oficina-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    max-height: 85vh;
}

.oficina-modal-img-container {
    height: 100%;
    min-height: 400px;
}

.oficina-modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oficina-modal-info {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-oficina-category {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-olive);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

#modal-oficina-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.modal-oficina-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 2rem;
}

.modal-oficina-schedule {
    background-color: var(--color-sand-dark);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--color-terracotta);
}

.modal-oficina-schedule strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.modal-oficina-schedule p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-body);
    font-weight: 500;
}

#modal-oficina-whatsapp {
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Nossa Forma de Cuidar
   ========================================================================== */
#forma-cuidar {
    background-color: var(--color-sand);
    border-top: 1px solid rgba(234, 229, 219, 0.4);
}

.cuidar-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.cuidar-info .section-subtitle {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                filter 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.reveal.active .cuidar-info .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cuidar-info .section-title {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s;
}

.reveal.active .cuidar-info .section-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cuidar-info > p {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                filter 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}

.reveal.active .cuidar-info > p {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cuidar-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
}

.cuidar-item {
    display: flex;
    gap: 1.25rem;
}

.cuidar-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-olive-light);
    color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cuidar-item-icon svg {
    width: 20px;
    height: 20px;
}

.cuidar-item-content h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-moss);
    margin-bottom: 0.5rem;
}

.cuidar-item-content p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Temporadas Section
   ========================================================================== */
#temporadas {
    background-color: var(--color-terracotta-light);
    position: relative;
    overflow: hidden;
}

/* Organic background shapes for natural aesthetics */
#temporadas::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 142, 119, 0.1) 0%, rgba(201, 142, 119, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.temporadas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.temporadas-image {
    height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(201, 142, 119, 0.1);
}

.temporadas-content .section-subtitle {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
                filter 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.reveal.active .temporadas-content .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.temporadas-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s,
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.25s;
}

.reveal.active .temporadas-content h2 {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.temporadas-desc {
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s,
                filter 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}

.reveal.active .temporadas-desc {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.temporadas-benefits {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.temporadas-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.temporadas-benefits li svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

/* ==========================================================================
   Vivências / Galeria Section
   ========================================================================== */
#galeria {
    background-color: var(--color-sand);
}

/* Masonry Layout */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    background-color: var(--color-white);
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 53, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-icon-zoom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-icon-zoom svg {
    width: 22px;
    height: 22px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 53, 39, 0.08);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon-zoom {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 39, 33, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-white);
    font-size: 2.5rem;
    opacity: 0.8;
    background: none;
    border: none;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-prev { left: -90px; }
.lightbox-next { right: -90px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev svg, .lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   Equipe Section
   ========================================================================== */
#equipe {
    background-color: var(--color-sand-dark);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.equipe-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(234, 229, 219, 0.5);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.equipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(43, 53, 39, 0.05);
    border-color: var(--color-beige-dark);
}

.equipe-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.equipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.equipe-card:hover .equipe-img {
    transform: scale(1.03);
}

.equipe-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.equipe-name {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.equipe-role {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-olive);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.equipe-btn {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-beige-dark);
    padding-bottom: 6px;
    align-self: center;
    transition: var(--transition-fast);
}

.equipe-btn:hover {
    color: var(--color-olive);
    border-bottom-color: var(--color-olive);
}

/* ==========================================================================
   Depoimentos Section
   ========================================================================== */
#depoimentos {
    background-color: var(--color-sand);
    position: relative;
}

.depoimentos-slider {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.depoimento-slide {
    min-width: 100%;
    padding: 0 4rem;
    text-align: center;
    box-sizing: border-box;
}

.depoimento-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.6;
    color: var(--color-moss);
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    filter: blur(4px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.reveal.active .depoimento-quote {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.depoimento-quote::before, .depoimento-quote::after {
    font-size: 5rem;
    position: absolute;
    color: rgba(201, 142, 119, 0.15);
    font-family: var(--font-serif);
    line-height: 1;
}

.depoimento-quote::before {
    content: '“';
    top: -40px;
    left: -20px;
}

.depoimento-quote::after {
    content: '”';
    bottom: -80px;
    right: -20px;
}

.depoimento-author {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.depoimento-author-title {
    font-family: var(--font-serif);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    display: block;
}

.depoimentos-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3.5rem;
}

.depoimento-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-beige-dark);
    transition: var(--transition-fast);
}

.depoimento-dot.active {
    background-color: var(--color-olive);
    transform: scale(1.3);
}

/* ==========================================================================
   CTA Final Section
   ========================================================================== */
#cta {
    background-color: var(--color-olive-light);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(234, 229, 219, 0.5);
    border-bottom: 1px solid rgba(234, 229, 219, 0.5);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 20px;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--color-moss);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(35px);
    filter: blur(6px);
    transition: opacity 1.3s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
                transform 1.3s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
                filter 1.3s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.reveal.active .cta-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cta-text {
    font-size: 1.15rem;
    color: var(--color-text-body);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
                transform 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
                filter 1.1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.reveal.active .cta-text {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal.active .btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ==========================================================================
   Contato & Localização
   ========================================================================== */
#contato {
    background-color: var(--color-sand);
    border-top: 1px solid rgba(234, 229, 219, 0.5);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 4rem;
}

.contato-form-wrapper {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(234, 229, 219, 0.5);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-beige-dark);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background-color: var(--color-sand);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px var(--color-terracotta-light);
}

.btn-submit {
    align-self: flex-start;
    width: 100%;
    cursor: pointer;
}

.contato-map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(234, 229, 219, 0.5);
    height: 100%;
    min-height: 450px;
}

.contato-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--color-sand-dark);
    color: var(--color-text-body);
    border-top: 1px solid var(--color-beige);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo img {
    height: 50px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
    border-color: var(--color-olive);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-moss);
    margin-bottom: 1.75rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-body);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-olive);
    padding-left: 4px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-info-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-info-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-olive);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-map-container {
    width: 100%;
    height: 160px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-beige);
    margin-top: 1rem;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-beige);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1100px) {
    .container {
        padding: 5rem 0;
    }
    
    .psicoterapia-grid, .oficinas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        column-count: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .sobre-content {
        padding-right: 0;
    }
    
    .sobre-image {
        height: 450px;
    }
    
    .cuidar-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .temporadas-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .temporadas-image {
        height: 400px;
        order: 2;
    }
    
    .temporadas-content {
        order: 1;
    }

    .oficina-modal-body {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .oficina-modal-img-container {
        height: 250px;
        min-height: auto;
    }

    .oficina-modal-info {
        padding: 2.5rem 2rem;
    }

    #modal-oficina-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Navigation Menu Mobile */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-sand);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Modify colors on mobile nav drawer */
    .nav-menu .nav-link {
        font-size: 1.05rem;
        color: var(--color-moss);
    }
    
    /* Adjust grid systems for small screens */
    .psicoterapia-grid, .oficinas-grid, .equipe-grid, .footer-grid, .contato-grid, .oficinas-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid, .oficinas-testimonials-grid {
        gap: 2.5rem;
    }

    .contato-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contato-map-wrapper {
        min-height: 350px;
    }
    
    .cuidar-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        column-count: 1;
    }
    
    .depoimento-slide {
        padding: 0 1rem;
    }
    
    .lightbox-prev, .lightbox-next {
        display: none !important; /* Hide prev/next buttons on mobile to avoid layout breaking, use swipe or touch */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Pilares Section
   ========================================================================== */
#pilares {
    background-color: var(--color-sand-dark);
}

.pilares-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(192, 128, 112, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pilares-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(192, 128, 112, 0.3);
}

.pilares-card h3 {
    font-size: 1.4rem;
    color: var(--color-moss);
    margin-bottom: 1.25rem;
}

.pilares-card p {
    font-size: 0.96rem;
    color: var(--color-text-body);
    line-height: 1.7;
}

