:root {
    --primary-color: #4d6944;
    --secondary-color: #ebf1e5;
    --accent-color: #5d7954;
    --dark-green: #3a5234;
    --light-green: #f5f8f2;
    --text-dark: #2c3e28;
    --text-light: #6b7c66;
    --white: #ffffff;
    --shadow: rgba(77, 105, 68, 0.1);
    --shadow-medium: rgba(77, 105, 68, 0.15);
    --shadow-strong: rgba(77, 105, 68, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px var(--shadow-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* ===============================
   MENU MOBILE ORGANIZADO
================================ */
@media (max-width: 768px) {

    .navbar {
        padding: 12px 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: white;
        padding: 12px 0;
        gap: 6px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 1rem;
    }

    /* Dropdown */
    .dropdown-menu {
        display: none;
        background: #f6f9f3;
        padding: 8px 0;
        margin-top: 6px;
        border-radius: 12px;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0;
        display: block;
        font-size: 0.95rem;
    }

    /* Botão agendar */
    .btn-agendar {
        margin-top: 10px;
        width: auto;
        padding: 10px 22px;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 220px;
    padding: 1rem 0;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.btn-agendar {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-agendar::after {
    display: none;
}

.btn-agendar:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(235, 241, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 241, 229, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(235,241,229,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 241, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light-green);
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin-bottom: 2rem;
    border-radius: 2px;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: white;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: color 0.4s ease;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.4s ease;
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(77, 105, 68, 0.05), rgba(93, 121, 84, 0.05));
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(235, 241, 229, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 1.5rem;
        align-items: stretch;
    }

    .nav-menu li {
        padding: 0 1rem;
    }

    .nav-link {
        padding: 1rem 1.5rem;
    }
}

.nav-link::after {
    display: none;
}

.dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.5rem;
    display: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: flex;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.services-grid {
    grid-template-columns: 1fr;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about {
        padding: 4rem 0;
    }

    .services-preview {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }
}

/* Page Header */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(235,241,229,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--secondary-color);
}

.slim-on-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
}

/* Treatments Section */
.treatments-section {
    padding: 6rem 0;
    background: var(--light-green);
}

.treatment-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.treatment-item.reverse {
    direction: rtl;
}

.treatment-item.reverse>* {
    direction: ltr;
}

.treatment-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.treatment-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.treatment-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.treatment-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.treatment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.treatment-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Slim On Details */
.slim-on-details {
    padding: 6rem 0;
    background: white;
}

.slim-on-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
}

.how-it-works {
    margin-bottom: 6rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2.5rem 2rem;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.indications-section {
    background: var(--light-green);
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.indications-col h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* ===============================
   SLIM ONE – AJUSTES MOBILE
================================ */

@media (max-width: 768px) {

    .slim-on-details {
        padding: 3rem 1.5rem;
    }

    .slim-on-intro {
        margin-bottom: 2.5rem;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* BENEFÍCIOS */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    /* COMO FUNCIONA */
    .how-it-works {
        margin-bottom: 3rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    /* INDICAÇÕES */
    .indications-section {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .indications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .indications-col h3 {
        font-size: 1.4rem;
    }

    .check-list li {
        font-size: 0.95rem;
    }

    /* CTA */
    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}


/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--dark-green);
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form,
.appointment-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.map-section {
    background: var(--secondary-color);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: white;
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-intro a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    background: var(--light-green);
    padding: 4rem 2rem;
    border-radius: 20px;
}

.faq-cta h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Appointment Section */
.appointment-section {
    padding: 6rem 0;
    background: var(--light-green);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.appointment-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number-small {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--text-light);
}

.info-box {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-box h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-quick {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-top: 2rem;
}

.contact-quick h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-quick p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-quick a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.appointment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.appointment-form-container h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Responsive for new pages */
@media (max-width: 968px) {

    .treatment-item,
    .treatment-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-grid,
    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .indications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .page-header {
        height: 40vh;
        min-height: 300px;
    }

    .treatments-section {
        padding: 3rem 0;
    }

    .treatment-item {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-form-container,
    .appointment-form-container {
        padding: 2rem 1.5rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 1.5rem;
        align-items: stretch;
    }

    .nav-menu li {
        padding: 0 1rem;
    }

    .nav-link {
        padding: 1rem 1.5rem;
    }
}

/* End of file check, actually just appending to standard end */

/* Carousel Section */
/* Carousel Section */
.carousel-section {
    padding: 0;
    background: white;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 4rem auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(77, 105, 68, 0.85);
    padding: 10px 16px;
    border-radius: 8px;
}

.carousel-caption {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4d6944;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 2rem;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd8c3;
    cursor: pointer;
    padding: 0;
}

.carousel-dots button.active {
    background: #4d6944;
}

/* Info Box Grid (User requested "side by side boxes") */
.info-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(77, 105, 68, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    /* Default spacing if stacked */
}

/* Ensure they grid if container permits, or add a container style here if possible. 
   Since user destroyed the grid container in HTML, I can only style .info-box individually 
   unless I target the container they are in. 
   Assuming they are in a generic .container, I can't grid strictly. 
   But I will style the box itself nicely. */

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(77, 105, 68, 0.08);
}

.info-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 1rem;
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.info-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Results Grid Styling */
.results-section {
    padding: 4rem 2rem;
    background: #fafbfc;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #777;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive columns */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.result-card {
    background: white;
    padding: 1rem;
    /* Frame effect */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.result-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.result-card span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: #fff;
}

.philosophy-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.philosophy-row:last-child {
    margin-bottom: 0;
}

.philosophy-row.reverse {
    flex-direction: row-reverse;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.philosophy-image {
    flex: 1;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {

    .philosophy-row,
    .philosophy-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

/* Featured Badge */
.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}




/* Mobile: Larger treatment images */
@media (max-width: 768px) {
    .image-placeholder {
        min-height: 500px;
        max-height: 600px;
    }
}

/* ===============================
   HERO – AJUSTES MOBILE
================================ */

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
        align-items: flex-start;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        gap: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* TRATAMENTO DESTAQUE */
    .badge-destaque {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn,
    .btn-large {
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===============================
   AJUSTES GERAIS – MOBILE
================================ */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .btn {
        width: 100%;
    }
}

/* ===============================
   CORREÇÃO IMAGENS – RESULTADOS (MOBILE)
================================ */
@media (max-width: 768px) {

    /* cards de resultados */
    .resultados-grid,
    .cards-resultados {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* cada card */
    .resultado-card,
    .card-resultado {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* imagens dentro dos cards */
    .resultado-card img,
    .card-resultado img {
        width: 100% !important;
        height: auto !important;
    }

    /* se tiver imagem redonda */
    .resultado-card img.round,
    .card-resultado img.round {
        border-radius: 16px;
    }
}

/* ===============================
   CARROSSEL RESULTADOS – MOBILE
================================ */

.results-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
}

.results-carousel::-webkit-scrollbar {
    display: none;
}

.result-card {
    min-width: 85%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 28px;
    padding: 16px;
    text-align: center;
}

.result-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

@media (min-width: 769px) {
    .results-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }

    .result-card {
        min-width: auto;
    }
}

/* ===== MENU COM SUBMENU FUNCIONAL ===== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 18px;
    color: #000000;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f2f6ee;
}

/* PC */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ===== AJUSTE SLIM ONE – MOBILE ===== */
@media (max-width: 768px) {

    .slim-one-badge,
    .badge-destaque,
    .highlight-badge {
        position: static !important;
        margin: 0 auto 16px;
        display: inline-block;
        transform: none !important;
    }

}

/* ===== Dropdown Tratamentos ===== */
.dropdown-menu {
    display: none;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .dropdown.open .dropdown-menu {
        display: block;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
}

.logo-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-agendar {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.menu-overlay.active {
    display: flex;
}

.menu-overlay {
    pointer-events: none;
}

.menu-overlay.active {
    pointer-events: all;
}

.menu-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.menu-list li {
    margin: 20px 0;
}

.menu-list a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

body {
    padding-top: 80px;
}

/* ===============================
   CORREÇÃO DEFINITIVA DESKTOP
================================ */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        padding: 0;
        gap: 24px;
        height: auto;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }
}