/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D9C7B6;     /* Bege claro elegante */
    --primary-light: #F0E6DD; /* Bege mais claro */
    --secondary: #8D6E63;   /* Marrom suave */
    --text-color: #333333;  /* Cinza escuro */
    --white: #FFFFFF;       /* Branco puro */
    --off-white: #F4EDE4;   /* Off-white aconchegante */
    --accent: #5E8B7E;      /* Verde elegante */
    --accent-dark: #467569; /* Verde escuro para hover */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
}

/* Classe para esconder o header quando rola para baixo */
.header-hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    transition: transform 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s, background-color 0.3s;
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link:hover::after {
    width: 100%;
    background-color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/beauty-care-min.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(80, 80, 100, 0.6), rgba(150, 150, 170, 0.4));
    z-index: -1;
}

/* Botão de rolagem */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    z-index: 5;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-top: 80px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(141, 110, 99, 0.25);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.4s;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.7s;
}

.cta-button {
    background-color: var(--accent); /* Verde */
    color: var(--white); /* Texto branco */
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, 0.25); /* Borda semi-transparente */
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    opacity: 0;
    transform: scale(0.95);
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1s, pulse 1.5s infinite alternate;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(94, 139, 126, 0.3), 0 0 0 4px rgba(94, 139, 126, 0.1); /* Sombra verde + borda externa */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7A5A53; /* Tom de marrom médio, mais escuro que o bege */
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
    background-color: var(--accent); /* Mantém a cor verde no hover */
    box-shadow: 0 8px 20px rgba(141, 110, 99, 0.3); /* Sombra marrom */
    border-color: rgba(255, 255, 255, 0.5); /* Borda mais clara no hover */
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:active {
    transform: translateY(1px) scale(0.95);
    box-shadow: 0 5px 15px rgba(141, 110, 99, 0.2);
    background-color: var(--accent);
}


/* Animações */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

@keyframes fadeInReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 15px rgba(94, 139, 126, 0.3), 0 0 0 4px rgba(94, 139, 126, 0.1);
    }
    100% {
        box-shadow: 0 6px 15px rgba(94, 139, 126, 0.5), 0 0 0 6px rgba(94, 139, 126, 0.2);
    }
}

/* Seção Sobre */
.sobre {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--off-white) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.sobre-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.sobre-content {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    border-radius: 3px;
}

.sobre-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.destaques-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.destaque-item {
    background-color: var(--off-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: scale(0.9);
}

.destaque-item:nth-child(1) {
    animation: scaleUp 0.6s ease forwards 0.9s;
}

.destaque-item:nth-child(2) {
    animation: scaleUp 0.6s ease forwards 1.1s;
}

.destaque-item:nth-child(3) {
    animation: scaleUp 0.6s ease forwards 1.3s;
}

.destaque-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.destaque-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(141, 110, 99, 0.2);
}

.destaque-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.destaque-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.sobre-imagem {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards 0.8s;
}

.imagem-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid rgba(217, 199, 182, 0.3);
}

.rounded-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.imagem-container:hover .rounded-image {
    transform: scale(1.05);
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Seção Tratamentos */
.tratamentos {
    padding: 100px 0;
    background-color: var(--off-white);
    position: relative;
}

.tratamentos-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 15px;
    font-weight: 300;
}

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

.tratamento-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(217, 199, 182, 0.2);
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.tratamento-card:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.tratamento-card:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.tratamento-card:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.tratamento-card:nth-child(4) {
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.tratamento-card:nth-child(5) {
    animation: fadeInUp 0.6s ease forwards 1s;
}

.tratamento-card:nth-child(6) {
    animation: fadeInUp 0.6s ease forwards 1.2s;
}

.tratamento-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.tratamento-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--off-white), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 2rem;
    transition: transform 0.3s, background 0.3s;
}

.tratamento-card:hover .tratamento-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.tratamento-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.tratamento-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tratamento-btn {
    background-color: transparent;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tratamento-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.tratamento-btn:hover {
    color: var(--white);
}

.tratamento-btn:hover::before {
    width: 100%;
}

.tratamento-btn:active {
    transform: scale(0.95);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100%;
    background-color: var(--white);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 50px 0 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 1060;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    visibility: hidden;
}

.mobile-menu.active .mobile-menu-close {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
    visibility: visible;
}

.mobile-menu-close:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.mobile-menu-container {
    padding: 10px 30px 30px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 8px;
}

.mobile-menu.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-nav-item:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-link {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(141, 110, 99, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.mobile-tagline {
    margin-bottom: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.mobile-tagline:hover {
    opacity: 1;
}



.mobile-tagline-text {
    position: relative;
    background: linear-gradient(to right, var(--primary-light), #f8f3ef);
    border: 1px solid var(--primary);
    border-radius: 25px;
    padding: 12px 18px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--secondary);
    text-align: center;
    box-shadow: 0 3px 10px rgba(141, 110, 99, 0.1);
    margin: 0 5px;
    letter-spacing: 0.5px;
}

.mobile-tagline-text::before,
.mobile-tagline-text::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E8A0BF; /* Rosa suave e feminino */
    opacity: 0.8;
}

.mobile-tagline-text::before {
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.mobile-tagline-text::after {
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

/* Seção Antes e Depois */
.antes-depois {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.antes-depois-header {
    text-align: center;
    margin-bottom: 60px;
}

.antes-depois-slider-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.antes-depois-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.slider-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    z-index: 0;
}

.before-image img,
.after-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    margin-left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: ew-resize;
    touch-action: none;
}

.handle-line {
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: #D9C7B6;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--text-color);
}

.handle-circle i {
    font-size: 0.7rem;
    color: #fff;
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}

.handle-circle i:first-child {
    margin-right: 5px;
}

/* Estados interativos */
.slider-handle:hover .handle-circle,
.slider-handle.active .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
    background-color: #8D6E63;
}

.slider-handle:hover .handle-line,
.slider-handle.active .handle-line {
    background-color: #fff;
    width: 4px;
}

/* Estilo adicional para o slider quando está sendo arrastado */
.slider-container.dragging {
    cursor: grabbing;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(141, 110, 99, 0.8);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.9rem;
    border-radius: 30px;
    z-index: 3;
    font-weight: 500;
}

.before-image .slider-label {
    left: 20px;
}

.after-image .slider-label {
    right: 20px;
}

.antes-depois-caption {
    text-align: center;
    padding: 0 15px;
}

.caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.caption-desc {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.5;
}

/* Seção de Contato */
.contato-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    color: var(--text-color);
}

.contato-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/contato-bg.jpg');
    background-size: cover;
    background-position: center;
    /* Removido background-attachment: fixed para melhorar performance */
    z-index: -2;
    /* Removido transform e will-change para melhorar performance */
}

.contato-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: -1;
    /* Removido backdrop-filter para melhorar performance */
}

.contato-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contato-title {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 0.8s ease forwards;
}

.contato-subtitle {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 0.8s ease forwards 0.2s;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInReveal 0.6s ease forwards calc(0.3s + var(--index, 0) * 0.1s);
}

.contato-item:nth-child(1) { --index: 1; }
.contato-item:nth-child(2) { --index: 2; }
.contato-item:nth-child(3) { --index: 3; }
.contato-item:nth-child(4) { --index: 4; }

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contato-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contato-item:hover .contato-icon {
    transform: scale(1.1);
    background-color: var(--secondary);
}

.contato-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contato-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.contato-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-text a:hover {
    color: var(--secondary);
}

.contato-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInReveal 0.8s ease forwards 0.7s;
}

.contato-action {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 0.8s ease forwards 0.9s;
}

.contato-button {
    display: inline-block;
    background-color: #D9C7B6;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 34px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(217, 199, 182, 0.4);
}

.contato-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.contato-button i {
    margin-right: 8px;
    position: relative;
    z-index: 2;
}

.contato-button:hover {
    color: var(--white);
}

.contato-button:hover::before {
    width: 100%;
}

.contato-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(141, 110, 99, 0.2);
}

@media (max-width: 768px) {
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .contato-item {
        padding: 20px;
    }
    
    .contato-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contato-button {
        width: 100%;
        padding: 15px 30px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1100;
        position: fixed;
        top: 23px;
        right: 20px;
        width: 30px;
        height: 30px;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }
    
    /* Classe para esconder o botão mobile quando rola para baixo */
    .menu-toggle-hidden {
        transform: translateY(-120%);
        opacity: 0;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .sobre-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .sobre-imagem {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sobre-texto {
        text-align: center;
        font-size: 1rem;
    }
    
    .destaques-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tratamentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tratamento-card {
        padding: 30px 20px;
    }
    
    .tratamento-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .tratamento-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
