/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D3436;
    line-height: 1.7;
    background: #FDFCFA;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2D3436;
    text-align: center;
}
.section-divider {
    width: 60px; height: 3px;
    background: #2A7F6F;
    margin: 1rem auto 2rem;
    border-radius: 2px;
}
.lead-text {
    font-size: 1.15rem;
    color: #636E72;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: #F0F7F5; }

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 127, 111, 0.1);
    padding: 1rem 0;
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem; font-weight: 600; color: #2A7F6F;
}
.nav-links {
    display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
    font-size: 0.9rem; font-weight: 400; color: #636E72;
    transition: color 0.3s;
}
.nav-links a:hover { color: #2A7F6F; }
.nav-cta {
    background: #2A7F6F !important; color: #fff !important;
    padding: 0.5rem 1.3rem; border-radius: 6px;
    font-weight: 500 !important;
    transition: background 0.3s !important;
}
.nav-cta:hover { background: #237063 !important; }

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    display: flex; gap: 4px;
    margin-left: 1rem;
    border: 1px solid rgba(42, 127, 111, 0.25);
    border-radius: 6px;
    overflow: hidden;
}
.lang-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #636E72;
    transition: all 0.3s;
    text-decoration: none;
}
.lang-btn:hover {
    background: rgba(42, 127, 111, 0.08);
    color: #2A7F6F;
}
.lang-btn.active {
    background: #2A7F6F;
    color: #fff;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem;
}
.hero-title {
    font-size: 4.5rem; font-weight: 600; color: #fff;
    letter-spacing: 0.02em; margin-bottom: 0.3rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem; color: rgba(255,255,255,0.9);
    font-weight: 300; margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.hero-tagline {
    font-size: 1.1rem; color: rgba(255,255,255,0.85);
    font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-btn {
    display: inline-block;
    background: #2A7F6F; color: #fff;
    padding: 0.9rem 2.5rem; border-radius: 8px;
    font-size: 1rem; font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(42, 127, 111, 0.3);
}
.hero-btn:hover {
    background: #237063;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 127, 111, 0.4);
}
/* === AUDIENCE GRID === */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 1rem;
}
.audience-card {
    background: #fff;
    padding: 2rem; border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(42, 127, 111, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 127, 111, 0.1);
}
.audience-icon {
    font-size: 2rem; color: #2A7F6F;
    display: block; margin-bottom: 0.8rem;
}
.audience-card h3 {
    font-size: 1.3rem; color: #2A7F6F;
    margin-bottom: 0.5rem;
}
.audience-card p {
    font-size: 0.95rem; color: #636E72;
    line-height: 1.6;
}
/* === PROGRAM CARDS === */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; margin-top: 1rem;
}
.program-card {
    background: #fff; border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #E0E0E0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.program-card.featured {
    border: 2px solid #2A7F6F;
    box-shadow: 0 8px 30px rgba(42, 127, 111, 0.12);
}
.program-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #2A7F6F; color: #fff;
    padding: 0.3rem 1.2rem; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.03em;
}
.program-header { margin-bottom: 1rem; }
.program-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    color: #2A7F6F; text-transform: uppercase;
    letter-spacing: 0.1em;
}
.program-header h3 {
    font-size: 1.5rem; color: #2D3436; margin-top: 0.3rem;
}
.program-desc {
    font-size: 0.95rem; color: #636E72;
    margin-bottom: 1.5rem; line-height: 1.6;
}
.program-list {
    margin-bottom: 1.5rem;
}
.program-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.93rem; color: #2D3436;
}
.program-list li::before {
    content: "\2713";
    position: absolute; left: 0;
    color: #2A7F6F; font-weight: 600;
}
.program-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem; font-weight: 600; color: #2A7F6F;
    border-top: 1px solid #E8F5F1;
    padding-top: 1rem;
}
/* === THERAPIES === */
.therapies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; margin-top: 1rem;
}
.therapy-card {
    background: #fff;
    padding: 2rem; border-radius: 12px;
    border-left: 4px solid #2A7F6F;
    transition: transform 0.3s, box-shadow 0.3s;
}
.therapy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}
.therapy-card h3 {
    font-size: 1.25rem; color: #2A7F6F;
    margin-bottom: 0.5rem;
}
.therapy-card p {
    font-size: 0.93rem; color: #636E72; line-height: 1.6;
}

/* === TESTIMONIAL === */
.testimonial-section {
    background: #2A7F6F;
    padding: 4rem 0;
}
.testimonial {
    text-align: center;
    max-width: 700px; margin: 0 auto;
}
.testimonial p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem; font-style: italic;
    color: #fff; line-height: 1.7;
    margin-bottom: 1rem;
}
.testimonial cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
    font-style: normal;
}

/* === APPROACH === */
.approach-content {
    max-width: 750px; margin: 0 auto;
    text-align: center;
}
.approach-content p {
    font-size: 1rem; color: #636E72;
    margin-bottom: 1.2rem;
}
.approach-highlight {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem !important;
    color: #2A7F6F !important;
    font-style: italic;
    margin-top: 1.5rem !important;
}
/* === CONTACT === */
.contact-section { background: #FDFCFA; }
.contact-grid {
    display: flex; justify-content: center;
    gap: 3rem; margin-top: 1.5rem;
    flex-wrap: wrap;
}
.contact-item {
    text-align: center;
}
.contact-label {
    display: block;
    font-size: 0.8rem; font-weight: 600;
    color: #2A7F6F; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 0.3rem;
}
.contact-item a {
    font-size: 1.05rem; color: #2D3436;
    transition: color 0.3s;
}
.contact-item a:hover { color: #2A7F6F; }

/* === FOOTER === */
.footer {
    background: #2D3436;
    padding: 3rem 0; text-align: center;
}
.footer-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem; font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}
.footer-copy {
    font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* === CAROUSEL === */
.photo-gallery-section {
    padding: 5rem 0;
    background: #FDFCFA;
}
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.carousel-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}
.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}
.carousel-track img {
    flex: 0 0 calc((100% - 24px) / 3);
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.carousel-track img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.carousel-btn {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(42,127,111,0.1);
    color: #2A7F6F;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.carousel-btn:hover { background: #2A7F6F; color: #fff; }

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    color: #fff; font-size: 2.5rem;
    cursor: pointer; line-height: 1;
    opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none; color: #fff;
    font-size: 1.5rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .carousel-track img { height: 200px; }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-tagline { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }
    .section { padding: 3.5rem 0; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.8rem; }
    .programs-grid { grid-template-columns: 1fr; }
    .contact-grid { gap: 1.5rem; }
    .testimonial p { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .carousel-track img { height: 160px; }
    .carousel-btn { width: 32px; height: 32px; font-size: 0.9rem; }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .nav-links { display: none; }
    .lang-switcher { margin-left: auto; }
    .audience-grid { grid-template-columns: 1fr; }
}

/* === SCROLL REVEAL === */
[data-reveal] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal="fade-up"]    { transform: translateY(30px); }
[data-reveal="fade-left"]  { transform: translateX(-40px); }
[data-reveal="fade-right"] { transform: translateX(40px); }
[data-reveal="fade-in"]    { transform: translateY(15px); }
[data-reveal].revealed     { opacity: 1; transform: translate(0, 0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* === SCROLL INDICATOR === */
.scroll-indicator { margin-top: 2.5rem; transition: opacity 0.5s ease; }
.scroll-indicator span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* === O LUGAR / THE PLACE === */
.place-section { padding: 5rem 0; background: #FDFCFA; }
.place-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.place-image-col img {
    width: 100%; height: 520px;
    object-fit: cover; border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.place-text-col { display: flex; flex-direction: column; gap: 2rem; }
.place-fragment { padding-left: 1.5rem; border-left: 3px solid #2A7F6F; }
.place-fragment-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem; font-style: italic;
    color: #2D3436; margin-bottom: 0.4rem;
}
.place-fragment-text { font-size: 0.95rem; color: #636E72; line-height: 1.6; }
@media (max-width: 768px) {
    .place-grid { grid-template-columns: 1fr; gap: 2rem; }
    .place-image-col img { height: 280px; }
}

/* === UM DIA AQUI / A DAY HERE (TIMELINE) === */
.day-section { padding: 5rem 0; background: #F0F7F5; }
.timeline {
    position: relative;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: rgba(42, 127, 111, 0.2);
    transform: translateX(-50%);
}
.timeline-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
}
.timeline-step.left .timeline-content  { grid-column: 1; text-align: right; padding-right: 3rem; }
.timeline-step.left .timeline-dot-col  { grid-column: 2; display: flex; justify-content: center; }
.timeline-step.left .timeline-image    { grid-column: 3; }
.timeline-step.right .timeline-image   { grid-column: 1; }
.timeline-step.right .timeline-dot-col { grid-column: 2; display: flex; justify-content: center; }
.timeline-step.right .timeline-content { grid-column: 3; text-align: left; padding-left: 3rem; }
.timeline-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: #2A7F6F;
    border: 3px solid #F0F7F5;
    box-shadow: 0 0 0 3px rgba(42, 127, 111, 0.25);
    flex-shrink: 0;
}
.timeline-image img {
    width: 100%; height: 280px;
    object-fit: cover; border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.step-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem; font-weight: 600;
    color: #2A7F6F; text-transform: uppercase;
    letter-spacing: 0.12em; display: block;
    margin-bottom: 0.3rem;
}
.step-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem; color: #2D3436;
    margin-bottom: 0.5rem;
}
.step-text { font-size: 0.95rem; color: #636E72; line-height: 1.7; }
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-step,
    .timeline-step.left,
    .timeline-step.right {
        display: flex; flex-direction: column; gap: 1rem;
    }
    .timeline-step.left .timeline-content,
    .timeline-step.right .timeline-content {
        text-align: left; padding: 0;
    }
    .timeline-dot-col { display: none; }
    .timeline-image img { height: 200px; }
}

/* === TESTIMONIALS GRID === */
.testimonials-section { background: #2A7F6F; padding: 5rem 0; }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-divider { background: rgba(255, 255, 255, 0.3); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
}
.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem; line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    display: block; margin-bottom: 0.5rem;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem; font-style: italic;
    color: #fff; line-height: 1.7;
    margin-bottom: 1.2rem;
}
.testimonial-cite {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

/* === PARALLAX PULL-QUOTE BANNER === */
.quote-banner {
    position: relative;
    min-height: 400px;
    background-image: url('img/view-sea.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
}
.quote-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}
.quote-banner-text {
    position: relative; z-index: 2;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem; font-style: italic;
    color: #fff; text-align: center;
    max-width: 700px; padding: 0 2rem;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .quote-banner { background-attachment: scroll; min-height: 280px; }
    .quote-banner-text { font-size: 1.4rem; }
}

/* === THERAPY CARD OVERRIDES (icons + centered) === */
.therapy-icon {
    font-size: 2rem; color: #2A7F6F;
    display: block; margin-bottom: 0.75rem;
    text-align: center;
}
.therapy-card {
    border-left: none;
    border: 1px solid rgba(42, 127, 111, 0.12);
    text-align: center;
}
.therapy-card h3 { text-align: center; }