/*
 * Naya Inspired Template
 *
 * This stylesheet defines a neutral, earthy palette and refined typography
 * reminiscent of the Naya Squarespace template. Sections are clearly
 * delineated with alternating backgrounds and gentle shadows. Elements
 * maintain generous white space to foster a sense of calm and elegance.
 */

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

html {
    scroll-behavior: smooth;
}

/* Compensação do cabeçalho fixo para âncoras (#home, #help, etc.) */
#home,
#help,
#process,
#about,
#faq,
#contact {
    /* valor padrão (desktop/tablet) */
    scroll-margin-top: 140px;
}

/* No mobile o header é um pouco menor, então ajustamos a margem
   para a rolagem bater mais certinho na seção alvo */
@media (max-width: 900px) {
    #home,
    #help,
    #process,
    #about,
    #faq,
    #contact {
        scroll-margin-top: 95px;
    }
}

/* Smooth fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations to sections */
.intro,
.specialties,
.pain-points,
.about,
.process,
.cta,
.faq,
.instagram-feed {
    animation: fadeInUp 0.8s ease-out;
}

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-base);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
    padding: 0;
}

/* Color Palette */
:root {
     /* neutrals inspired by Linsey Rhyne Co website */
     --bg-base: #f5f2ea; /* light cream base */
     --bg-secondary: #ece6d7; /* parchment beige */
     --bg-tertiary: #e3dacc; /* sandy tan */
     --dark-green: #656d56; /* muted olive green */
     --taupe: #a89880; /* warm taupe */
     --darkbrown-: #4a4138; /* dark brown for cards */
     --text-primary: #3f3b36; /* deep charcoal */
     --text-secondary: #6e6456; /* medium brown-grey */
     --cta-color: #b79a78; /* earthy camel */
 
   /* New light green tone for specialty cards (lightened version of dark green) */
     /* This colour is a softer take on the dark olive used in the about section.  It lightens
        the base green by roughly 20 %, providing enough contrast against the darker headings
        while still remaining in the same earthy palette. */
     /* Slightly darker green tone for specialty cards to more closely relate to the "Olá, eu sou" section */
     /* Darken the specialty green so it better complements the dark green of the "Olá, eu sou" section */
     --specialty-green: #7c8569;
 
     /* Pale green previously used for generic backgrounds (retained for optional use) */
     --light-green: #f0f4ed;
 

    /* Legacy variable names mapped for backwards compatibility */
    --accent-primary: var(--taupe);
    --accent-secondary: var(--bg-tertiary);
}

/* Utility classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-link {
    display: inline-block;
    padding:  0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--cta-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(183, 154, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(183, 154, 120, 0.4);
    filter: brightness(1.05);
}

.btn-secondary {
    background-color: var(--accent-primary);
    color: #fff;
}
.btn-secondary:hover {
    /* reduce brightness on hover */
    filter: brightness(0.9);
}

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 59, 54, 0.2);
}

.btn-link {
    color: var(--cta-color);
    font-weight: 600;
    position: relative;
}
.btn-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--cta-color);
    transition: width 0.3s ease;
    margin-top: 0.2rem;
}
.btn-link:hover::after {
    width: 100%;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--dark-green);
    color: var(--bg-base);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    text-align: center;
}
.announcement-bar a {
    color: var(--bg-base);
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: rgba(245, 242, 234, 0.98);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-green);
    letter-spacing: -0.01em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}
.logo-top {
    display: block;
}
.logo-bottom {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.main-nav a {
    color: var(--text-secondary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.main-nav a::after {
    content: '';
    display: block;
    height: 1px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--cta-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(183, 154, 120, 0.3);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(183, 154, 120, 0.4);
    filter: brightness(1.05);
}

/* Hero */
.hero {
    /* Use base background to create a continuous flow into subsequent sections */
    background-color: var(--bg-base);
    padding: 5rem 0 4rem;
    overflow: hidden;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Center the image and overlay within the container */
    justify-content: center;
    gap: 4rem;
    position: relative;
}

.hero-image {
    /* Reduce width of the hero image for a narrower appearance */
    flex: 0 0 27%;
    max-width: 320px;
    background-color: var(--bg-base);
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    flex: 1 1 100%;
    max-width: 1200px;
    background-color: var(--bg-secondary);
    padding: 3rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1), 0 6px 16px rgba(0,0,0,0.06);
}

/* Overlay card variant for hero section */
.overlay-card {
    /* Allow the card to participate in normal flex flow but overlap the hero image slightly via a negative margin */
    position: relative;
    flex: 0 0 67%;
    max-width: 1200px;
    /* Light overlap with the hero image */
    margin-left: -8%;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Intro */
.intro {
    padding: 5rem 0;
    background-color: var(--bg-base);
    margin-top: 1rem;
}

.intro-container {
    text-align: center;
    max-width: 800px;
}

.intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pain Points */
.pain-points {
    /* Match the base background colour for a seamless transition */
    background-color: var(--bg-base);
    padding: 5rem 0;
    margin-top: 1rem;
}

.pain-container {
    /* New layout for pain points with image and overlay card */
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 450px;
    gap: 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* Image container for pain section */
.pain-image {
    flex: 1 1 35%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Darken image slightly and add transparency to allow the overlaid card to stand out */
    filter: brightness(0.8);
    opacity: 0.8;
}
/* Card overlay in pain section */
.pain-card {
    /* Place the card in the normal flow so it sits next to the image */
    position: relative;
    flex: 1 1 65%;
    background-color: var(--bg-secondary);
    padding: 3rem 3rem;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    z-index: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pain-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.3;
    /* Reset margin adjustments to align heading naturally on the left */
    margin-left: 0;
}
.pain-card ul {
    margin-bottom: 2rem;
}
.pain-card li {
    text-align: left;
    position: relative;
    padding-left: 1.25rem;
    padding-right: 0;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.pain-card li::before {
    content: '\2022';
    color: var(--cta-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Ensure all list elements and buttons inside the pain card are aligned to the right */
.pain-card ul,
.pain-card li,
.pain-card a {
    text-align: left;
    /* Reset margin to default so elements align naturally on the left */
    margin-left: 0;
}
.pain-card .btn-outline {
    margin-top: 1rem;
}

/* About */
.about {
    padding: 3rem 0 4rem;
    background-color: var(--dark-green);
    margin-top: 1rem;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: visible;
}
.about-content {
    flex: 1 1 50%;
    max-width: 600px;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--bg-base);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.about-content p {
    color: var(--bg-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}
.about-content ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--bg-secondary);
    font-size: 0.95rem;
}
.about-content ul li::before {
    content: '\2022';
    color: var(--cta-color);
    position: absolute;
    left: 0;
    top: 0;
}
.about-content .btn-link {
    margin-top: 1rem;
}

.about-image {
    flex: 1 1 35%;
    max-width: 380px;
    border-radius: 220px 220px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 3px solid var(--bg-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: -70px;
    transform: translateY(15%);
}

.about-image:hover {
    transform: translateY(calc(15% - 4px));
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Specialties / Slider */
.specialties {
    padding: 5rem 0;
    /* Align specialties section background with the base colour for a continuous flow */
    background-color: var(--bg-base);
    /* Remove section border; the frame around the slider will now carry the border */
    margin-top: 1rem;
}
.specialties-slider {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}
.specialties-inner {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s ease;
}
.specialty-card {
    /* Show three cards at a time on desktop */
    flex: 0 0 calc(33.333% - 2rem);
    /* Use a subtle light green background on cards derived from the dark green */
    background-color: var(--specialty-green);
    margin: 0 1rem;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.specialty-card p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.specialty-card .btn-link {
    color: #ffffff;
}

.specialty-card .btn-link::after {
    background: #ffffff;
}
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}
.slider-button:hover {
    background-color: var(--accent-primary);
    color: #fff;
}
.slider-button.prev {
    left: 0;
}
.slider-button.next {
    right: 0;
}

/* Frame around the specialties slider.  Provides a tight border matching the slider arrows */

.specialties-frame {
    background-color: var(--bg-secondary);
    border: none;
    border-radius: 12px;
    padding: 2rem 1rem;
    margin-top: 2rem;
    position: relative;
    /* Constrain the frame so it hugs the cards and arrows more closely */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Call to Action */
.cta {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    margin-top: 1rem;
}
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    z-index: -2;
}
.cta-container {
    position: relative;
    display: flex;
    justify-content: center;
}
.cta-card {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 4rem 3.5rem;
    max-width: 750px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.15), 0 6px 16px rgba(0,0,0,0.1);
}
.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.cta-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Blog */
.blog {
    padding: 4rem 0;
    background-color: var(--bg-base);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.blog-card {
    background-color: var(--bg-secondary);
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card img {
    height: 180px;
    object-fit: cover;
}
.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 1rem;
    color: var(--text-primary);
}
.blog-card p {
    flex-grow: 1;
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.blog-card .btn-link {
    margin: 0 1rem 1.5rem;
    align-self: flex-start;
}

/* Instagram Feed */
.instagram-feed {
    padding: 5rem 0;
    background-color: var(--bg-tertiary);
    margin-top: 1rem;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.insta-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.insta-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* FAQ Accordion */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-base);
    margin-top: 1rem;
}
.accordion {
    max-width: 700px;
    margin: 0 auto;
}
.accordion-item + .accordion-item {
    margin-top: 1rem;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Mulish', sans-serif;
}
.accordion-header .icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 1rem;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-tertiary);
    padding: 0 1.5rem;
    border-radius: 0 0 4px 4px;
}
.accordion-body p {
    margin: 1rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    /* garante que fique acima do overlay e do menu lateral */
    z-index: 11001;
    transition: filter 0.3s ease;
}
.whatsapp-float:hover {
    filter: brightness(0.9);
}
.whatsapp-float .whatsapp-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
}
.accordion-body.active {
    /* This class is toggled via JS to expand the accordion */
    display: block;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: var(--bg-base);
}
.accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}
.accordion-item + .accordion-item {
    margin-top: 1rem;
}
.accordion-header {
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--bg-tertiary);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
.accordion-header:hover {
    background-color: var(--bg-tertiary);
}
.accordion-header .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border-radius: 0 0 6px 6px;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-body {
    padding: 1rem 1.5rem;
    max-height: 500px;
}
.accordion-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background-color: var(--bg-base);
    padding: 4rem 0 2rem;
    border-top: 1px solid #e3ddd8;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand .logo-top {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}
.footer-brand .logo-bottom {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.footer-brand p {
    margin: 1rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-signup h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.footer-signup p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.signup-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.signup-form input {
    flex: 1 1 200px;
    padding: 0.7rem;
    border: 1px solid #d0c7c1;
    border-radius: 4px;
    font-size: 0.9rem;
}
.signup-form button {
    background-color: var(--cta-color);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.signup-form button:hover {
    /* reduce brightness on hover */
    filter: brightness(0.95);
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.footer-links ul {
    margin-bottom: 1rem;
}
.footer-links li a {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links li a:hover {
    color: var(--cta-color);
}
.social-icons a img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid #e3ddd8;
    padding-top: 1rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        width: 95%;
        padding: 0 1.5rem;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-content.overlay-card {
        margin-left: -6%;
        flex: 1 1 100%;
    }

    .hero-image {
        flex: 0 0 35%;
        max-width: 280px;
    }

    .about {
        padding: 5rem 0 6.5rem;
    }

    .about-image {
        margin-bottom: -50px;
        transform: translateY(12%);
    }

    .process {
        padding: 4rem 0 3rem;
    }

    .process-cards {
        gap: 1.5rem;
    }

    .process-card {
        flex: 1 1 45%;
    }
}

/* Mobile and Tablet */
@media (max-width: 900px) {
    /* Header */
    .header-container {
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-base);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 10000;
        padding-top: 4rem;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        font-size: 1rem;
    }

    .main-nav a::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-container {
        flex-direction: column;
        /* aproxima imagem e card no mobile */
        gap: 1.5rem;
        align-items: center;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 250px;
        width: 100%;
    }

    .hero-content.overlay-card {
        margin-left: 0;
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        /* leve sobreposição para “colar” no fim da foto */
        margin-top: -0.75rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Intro Section */
    .intro {
        padding: 3rem 0;
    }

    .intro-heading {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Specialties */
    .specialties {
        padding: 3rem 0;
    }

    .specialties-frame {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .specialties-inner {
        scroll-snap-type: x mandatory;
        overflow-x: hidden;
        overflow-y: hidden;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }

    .specialty-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin: 0;
        padding: 2rem 1.5rem;
    }

    .slider-button.prev,
    .slider-button.next {
        display: flex;
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .slider-button.prev {
        /* desloca mais para a borda esquerda para não encobrir texto */
        left: -10px;
    }

    .slider-button.next {
        /* desloca mais para a borda direita para não encobrir texto */
        right: -10px;
    }

    .slider-button:hover {
        background-color: var(--accent-primary);
        color: #fff;
        transform: translateY(-50%) scale(1.1);
    }

    /* Pain Points */
    .pain-points {
        padding: 3rem 0;
    }

    .pain-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .pain-image {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .pain-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pain-card {
        flex: 1 1 100%;
        margin-right: 0;
        padding: 2rem 1.5rem;
        order: 2;
        border-radius: 0;
        margin-top: -1.25rem; /* encosta mais no fim da foto */
    }

    .pain-card h3 {
        font-size: 1.5rem;
    }

    /* About Section */
    .about {
        /* reduz o espaço inferior no mobile - card verde termina mais para cima */
        padding: 3rem 0 3rem;
        overflow: visible;
        z-index: 1;
    }

    .about-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-content {
        flex: 1 1 100%;
        max-width: 100%;
        order: 1;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-image {
        display: block;
        width: 100%;
        max-width: 320px;
        /* aproxima a foto do texto e reduz o “vão” */
        margin: 1.5rem auto -40px;
        transform: translateY(10%);
        z-index: 2;
        order: 2;
    }

    /* Process Section */
    .process {
        padding: 3.5rem 0 3rem;
        z-index: 1;
    }

    .process-cards {
        flex-direction: column;
        gap: 2rem;
    }

    .process-card {
        flex: 1 1 100%;
    }

    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    /* FAQ */
    .faq {
        padding: 3rem 0;
    }

    .accordion {
        max-width: 100%;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1rem;
    }

    /* Instagram Feed */
    .instagram-feed {
        padding: 3rem 0;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .about-image {
        max-width: 280px;
        margin-bottom: -65px;
        transform: translateY(18%);
    }

    /* Footer */
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        /* sobe um pouco no mobile para não ficar escondido pela barra do navegador */
        bottom: 2.5rem;
        right: 1rem;
    }

    .whatsapp-float .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-bottom {
        font-size: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .intro-heading {
        font-size: 1.4rem;
    }

    .specialty-card {
        flex: 0 0 100%;
        padding: 1.75rem 1.25rem;
    }

    .specialty-card h3 {
        font-size: 1.1rem;
    }

    .pain-card {
        padding: 1.75rem 1.25rem;
    }

    .pain-card h3 {
        font-size: 1.3rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .cta-card h2 {
        font-size: 1.4rem;
    }

    .cta-card p {
        font-size: 0.9rem;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .insta-grid img {
        height: 120px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-link {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ===================================================================== */
/* Additional styles for the Linsey-inspired design */

/* Process Section */
.process {
    background-color: transparent;
    padding: 5rem 0;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}
.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    margin-top: 2rem;
}
.process-card {
    flex: 1 1 30%;
    background-color: var(--bg-base);
    padding: 2.5rem 2rem;
    border: 2px solid var(--dark-green);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    border-color: var(--cta-color);
}
.process-card.step-one {
    border-color: var(--taupe);
}
.process-card.step-two {
    border-color: var(--dark-green);
}
.process-card.step-three {
    border-color: var(--brown-dark);
}
.process-step {
    font-family: 'Mulish', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}
.process-card ul {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.process-card ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.process-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--cta-color);
}
.process-card .btn-link {
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-base);
    padding: 4rem 0;
}
.testimonials-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonials-inner {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
}
.testimonial-card {
    flex: 0 0 80%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: center;
}
.arch-image-testimonial {
    width: 180px;
    height: 220px;
    overflow: hidden;
    border-radius: 180px 180px 0 0;
    margin: 0 auto 1rem;
    border: 2px solid var(--dark-green);
}
.arch-image-testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.testimonial-author {
    font-weight: 600;
    color: var(--dark-green);
}
.testimonials .slider-button {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-green);
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.testimonials .slider-button:hover {
    color: var(--cta-color);
}

