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

/* Smooth scroll para toda a página */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Header Transparente */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header com fundo após scroll */
.header-transparent.scrolled {
    background: #ECE0D5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Link da logo */
.header-logo a {
    display: block;
    text-decoration: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 70px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #725d4a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #8B4513;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: auto;
    max-height: calc(100vh - 100px);
    background-color: rgba(236, 224, 213, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 1.5rem;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 15px 0 0 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

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

.mobile-menu-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8B4513;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(139, 69, 19, 0.1);
}

.mobile-nav {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav a {
    color: #8B4513;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: rgba(139, 69, 19, 0.1);
    color: #A0522D;
}

.mobile-nav a:hover {
    color: #A0522D;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsividade do Header */
@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .header-logo img {
        height: 55px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 1rem;
    }
    
    .header-logo img {
        height: 50px;
    }
    
    .mobile-menu {
        width: 220px;
        right: -100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #43010d;
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 18rem; /* Ajustado para compensar header fixo */
}

.hero-background {
    width: 100%;
    height: 100%;
    background-image: url('Fundo Secao 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin: 0 auto;
    margin-top: 8rem;
}

.hero-text {
    color: #43010d;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #43010d;
}

.hero-text h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    color: #5a422e;
    max-width: 90%;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 95%;
    height: auto;
}

/* Botão de Agendar Consulta */
.btn-agendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5a422e;
    color: white;
    padding: 0.7rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(90, 66, 46, 0.3);
    border: none;
    cursor: pointer;
}

.btn-agendar:hover {
    background-color: #4a3626;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(90, 66, 46, 0.4);
}

/* Seção Tratamentos Personalizados */
.tratamentos {
    background-color: #ece1d5;
    padding: 5rem 0;
}

.tratamentos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tratamentos h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #5a422e;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.tratamentos-descricao {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.tratamentos-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tratamento-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.tratamento-left {
    flex-direction: row;
}

.tratamento-right {
    flex-direction: row-reverse;
}

.tratamento-ganho-massa {
    margin-right: -10rem;
    position: relative;
    right: -5rem;
    width: calc(100% + 15rem);
}

.tratamento-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.tratamento-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.tratamento-overlay {
    position: absolute;
    top: -20px;
    background-color: #8B6F47;
    border-radius: 15px;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.tratamento-left .tratamento-overlay {
    right: -20px;
}

.tratamento-right .tratamento-overlay {
    left: -20px;
}

.tratamento-content {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.tratamento-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 150%;
    background-color: #5a422e;
    z-index: 1;
}

.tratamento-right .tratamento-content::before {
    left: 35%;
}

.tratamento-left .tratamento-content::before {
    left: 80%;
}

.tratamento-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ece1d5;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.tratamento-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #ece1d5;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .tratamentos {
        padding: 3rem 0;
    }
    
    .tratamentos-container {
        padding: 0 1rem;
    }
    
    .tratamentos h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .tratamentos-descricao {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .tratamentos-grid {
        gap: 2.5rem;
    }
    
    .tratamento-item {
        flex-direction: column !important;
        gap: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .tratamento-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .tratamento-image img {
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .tratamento-overlay {
        top: -10px;
        right: -10px !important;
        left: auto !important;
    }
    
    .tratamento-content {
        padding: 1.5rem;
        width: 100%;
    }
    
    .tratamento-content::before {
        left: 50% !important;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    
    .tratamento-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .tratamento-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Seção Entendemos suas Necessidades */
.necessidades {
    background: linear-gradient(135deg, #F5F1E8 0%, #EDE5D3 100%);
    padding: 60px 20px;
    position: relative;
}

.necessidades-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.necessidades-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.necessidades h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.necessidades-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #6B4423;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.necessidades-identificacao {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #6B4423;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.necessidades-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .necessidades-lista {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.necessidade-item {
    background: #885043;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    color: white;
    box-shadow: 0 4px 15px rgba(136, 80, 67, 0.3);
    transition: all 0.3s ease;
    min-height: 200px;
    border: none;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.6s ease forwards;
}

@media (min-width: 769px) {
    .necessidade-item {
        min-height: 180px;
        padding: 20px;
    }
}

/* Animações laterais */
@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Alternância de direções para cada card */
.necessidade-item:nth-child(odd) {
    transform: translateX(-50px);
    animation: slideInFromLeft 0.6s ease forwards;
}

.necessidade-item:nth-child(even) {
    transform: translateX(50px);
    animation: slideInFromRight 0.6s ease forwards;
}

/* Delay para cada card */
.necessidade-item:nth-child(1) { animation-delay: 0.1s; }
.necessidade-item:nth-child(2) { animation-delay: 0.2s; }
.necessidade-item:nth-child(3) { animation-delay: 0.3s; }
.necessidade-item:nth-child(4) { animation-delay: 0.4s; }
.necessidade-item:nth-child(5) { animation-delay: 0.5s; }
.necessidade-item:nth-child(6) { animation-delay: 0.6s; }

/* Estado inicial para animação controlada por JavaScript */
.necessidade-item.animate-on-scroll {
    opacity: 0;
    animation: none;
}

.necessidade-item.animate-on-scroll:nth-child(odd) {
    transform: translateX(-50px);
}

.necessidade-item.animate-on-scroll:nth-child(even) {
    transform: translateX(50px);
}

.necessidade-item.animate-on-scroll.visible:nth-child(odd) {
    animation: slideInFromLeft 0.6s ease forwards;
}

.necessidade-item.animate-on-scroll.visible:nth-child(even) {
    animation: slideInFromRight 0.6s ease forwards;
}

.necessidade-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 80, 67, 0.4);
}

.necessidade-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.necessidade-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ece1d5;
    margin: 0;
    line-height: 1.3;
}

.necessidade-content p {
    font-size: 14px;
    color: #ece1d5;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .necessidade-content h3 {
        font-size: 16px;
    }
    
    .necessidade-content p {
        font-size: 13px;
    }
}

.necessidade-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 5px;
}

.necessidade-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.necessidades-conclusao {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6B4423;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Resultados */
.resultados {
    background-color: #5a422e;
    color: #ece1d5;
    padding: 5rem 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.resultados-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resultados-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.resultados h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ece1d5;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* Carrossel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
    padding: 0 80px; /* Padding ao invés de margin para manter as setas visíveis */
    margin: 0 auto;
}

.carousel {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(236, 225, 213, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #5a422e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: #ece1d5;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.carousel-prev {
    left: 10px; /* Posiciona dentro do padding */
}

.carousel-btn.carousel-next {
    right: 10px; /* Posiciona dentro do padding */
}

/* Botões específicos do carrossel de resultados */
.carousel-btn.carousel-btn-prev {
    left: 0px;
}

.carousel-btn.carousel-btn-next {
    right: 0px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Botão Agendar Resultados */
.btn-agendar-resultados {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: #ece1d5;
    color: #5a422e;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.btn-agendar-resultados:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0e6d9;
}

.btn-agendar-resultados svg {
    width: 20px;
    height: 20px;
}

/* Botão Agendar Necessidades */
.btn-agendar-necessidades {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: #885043;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(136, 80, 67, 0.3);
    margin-top: 2rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.btn-agendar-necessidades:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 80, 67, 0.4);
    background: #5a422e;
}

.btn-agendar-necessidades svg {
    width: 20px;
    height: 20px;
}

/* Responsividade */
@media (max-width: 992px) {
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .carousel-btn:hover {
        background: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 150vh;
        padding-bottom: 6rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
        margin-top: 4rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .btn-agendar {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Resultados Mobile */
    .resultados {
        padding: 3rem 0;
        margin-top: -10rem;
    }
    
    .resultados-label {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1.5px;
    }

    .resultados h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        letter-spacing: -0.01em;
        line-height: 1.3;
        font-weight: 600;
    }
    
    /* Seção Necessidades - Mobile */
    .necessidades {
        padding: 60px 20px;
    }
    
    .necessidades h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .necessidades-intro,
    .necessidades-identificacao,
    .necessidades-conclusao {
        font-size: 1rem;
    }
    
    .necessidades-lista {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .necessidade-item {
        padding: 1rem 1.2rem;
    }
    
    .necessidade-item span {
        font-size: 0.95rem;
    }
    
    .resultados-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.005em;
        line-height: 1.45;
        padding: 0 1rem;
    }
    
    .resultados-description {
        font-size: 1.05rem;
        margin-bottom: 3rem;
        letter-spacing: 0.003em;
        line-height: 1.75;
        padding: 0 1.5rem;
    }
    
    .carousel-container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .carousel {
        width: 250px;
        height: 250px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Garantir que as setas do carrossel de resultados sejam visíveis no mobile */
    .carousel-btn.carousel-btn-prev,
    .carousel-btn.carousel-btn-next {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    .btn-agendar-resultados {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .btn-agendar-necessidades {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        letter-spacing: -0.005em;
        font-weight: 600;
    }
    
    /* Resultados Mobile Extra Small */
    .resultados {
        margin-top: -12rem;
    }
    
    .resultados-label {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
        letter-spacing: 1px;
    }

    .resultados h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.4;
        letter-spacing: -0.005em;
        font-weight: 600;
    }
    
    /* Seção Necessidades - Telas Pequenas */
    .necessidades {
        padding: 50px 15px;
    }
    
    .necessidades h2 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .necessidades-intro,
    .necessidades-identificacao,
    .necessidades-conclusao {
        font-size: 0.95rem;
    }
    
    .necessidades-lista {
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .necessidade-item {
        padding: 0.9rem 1rem;
    }
    
    .necessidade-item span {
        font-size: 0.9rem;
    }
    
    .carousel-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .carousel {
        width: 200px;
        height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Garantir que as setas do carrossel de resultados sejam visíveis em telas pequenas */
    .carousel-btn.carousel-btn-prev,
    .carousel-btn.carousel-btn-next {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    .btn-agendar-resultados {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .btn-agendar-necessidades {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }

    .resultados-highlights {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }

    .highlight-item {
        padding: 0.5rem 0.8rem;
        justify-content: center;
    }

    .highlight-text {
        font-size: 0.8rem;
    }
}

/* Seção Sobre a Dra. Júlia Piluski */
.sobre-dra {
    background-color: #F4EFE5;
    padding: 5rem 0;
}

.sobre-dra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sobre-dra-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sobre-dra-image {
    flex: 1;
    max-width: 320px;
}

.sobre-dra-image img {
    width: 100%;
    height: auto;
}

.sobre-dra-text {
    flex: 1;
    padding: 2rem;
}

.crm-info {
    font-size: 1rem;
    color: #885043;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.sobre-dra-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #885043;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sobre-dra-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sobre-dra-text p:last-child {
    margin-bottom: 2rem;
}

.btn-agendar-sobre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #885043;
    color: white;
    padding: 0.7rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(136, 80, 67, 0.3);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-agendar-sobre:hover {
    background-color: #6d3d32;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(136, 80, 67, 0.4);
}

.btn-agendar-sobre svg {
    flex-shrink: 0;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .sobre-dra {
        padding: 3rem 0;
    }
    
    .sobre-dra-container {
        padding: 0 1rem;
    }
    
    .sobre-dra-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .sobre-dra-image {
        max-width: 250px;
        order: 1;
    }
    
    .sobre-dra-text {
        padding: 1rem;
        order: 2;
    }
    
    .sobre-dra-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .sobre-dra-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .btn-agendar-sobre {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* Seção Feedbacks */
.feedbacks {
    background-color: #5a422e;
    color: #ece1d5;
    padding: 5rem 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.feedbacks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feedbacks-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feedbacks h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ece1d5;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrossel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.feedback-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.patient-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #D4A574;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.25rem;
}

.feedback-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ece1d5;
    flex-grow: 1;
    margin: 0;
}

/* Botões do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ece1d5;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Botão Agendar Feedbacks */
.btn-agendar-feedbacks {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: #ece1d5;
    color: #5a422e;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.btn-agendar-feedbacks:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0e6d9;
}

.btn-agendar-feedbacks svg {
    flex-shrink: 0;
}

/* Feedbacks Mobile */
@media (max-width: 768px) {
    .feedbacks {
        padding: 60px 20px;
    }
    
    .feedbacks-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feedbacks h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .carousel-container {
        padding: 0 10px;
        margin: 0;
        position: relative;
    }
    
    .carousel-track {
        gap: 0;
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .feedback-card {
        flex: 0 0 90%;
        padding: 1.5rem 1.5rem 3rem 1.5rem;
        min-height: 320px;
        text-align: left;
        border-radius: 12px;
        margin: 0 5%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    
    .patient-name {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 600;
        color: #D4A574;
    }
    
    .stars {
        margin: 1.5rem 0;
        font-size: 1.5rem;
        display: flex;
        gap: 0.25rem;
    }
    
    .star {
        color: #FFD700;
    }
    
    .feedback-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 0;
        color: #ece1d5;
        flex-grow: 1;
    }
    
    .carousel-btn {
        display: none;
    }
    
    /* Ocultar especificamente as setas do carrossel de feedbacks no mobile */
    .feedbacks .carousel-prev,
    .feedbacks .carousel-next {
        display: none !important;
    }
    
    /* Ajustar flechas do carrossel de resultados no mobile */
    .carousel-btn.carousel-btn-prev {
        left: 10px;
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn.carousel-btn-next {
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mostrar indicadores de pontos apenas no mobile */
    .carousel-indicators {
        display: flex !important;
        justify-content: center;
        gap: 0.8rem;
        margin: 2rem 0 1rem 0;
        position: relative;
    }

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #D4A574;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}
    
    .btn-agendar-feedbacks {
        margin-top: 3rem;
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        border-radius: 50px;
        background: #ece1d5;
        color: #5a422e;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.02em;
    }
    
    .btn-agendar-feedbacks:hover {
        background: #f0e6d9;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Indicadores de pontos - ocultos no desktop */
@media (min-width: 769px) {
    .carousel-indicators {
        display: none !important;
    }
}

/* Seção Como Funciona */
.como-funciona {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.como-funciona-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.como-funciona-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5a422e;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.como-funciona h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #5a422e;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.processo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.processo-card {
    background: #ffffff;
    border: 1px solid rgba(90, 66, 46, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.processo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(90, 66, 46, 0.15);
    border-color: rgba(90, 66, 46, 0.3);
}

.processo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processo-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.processo-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a422e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.processo-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.processo-card li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a422e;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.processo-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5a422e;
    font-weight: bold;
    font-size: 1.1rem;
}

.processo-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a422e;
    margin: 0;
    text-align: left;
}



/* Botão Agendar Como Funciona */
.btn-agendar-como-funciona {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.5rem;
    background: #5a422e;
    color: #ece1d5;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 66, 46, 0.3);
    margin-top: 2rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.btn-agendar-como-funciona:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 66, 46, 0.4);
    background: #6d4f3a;
}

.btn-agendar-como-funciona svg {
    flex-shrink: 0;
}

/* Como Funciona - Responsivo */
@media (max-width: 768px) {
    .como-funciona {
        padding: 3rem 0;
    }
    
    .como-funciona-container {
        padding: 0 1rem;
    }
    
    .como-funciona h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .processo-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .processo-card {
        padding: 2rem 1.5rem;
    }
    
    .processo-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .processo-icon img {
        width: 100px;
        height: 100px;
    }
    
    .processo-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .processo-card li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .processo-card p {
        font-size: 0.9rem;
    }
    
    .btn-agendar-como-funciona {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .como-funciona {
        padding: 2.5rem 0;
    }
    
    .como-funciona h2 {
        font-size: 1.6rem;
    }
    
    .processo-cards {
        gap: 1rem;
    }
    
    .processo-card {
        padding: 1.5rem 1rem;
    }
    
    .processo-icon {
        width: 80px;
        height: 80px;
    }
    
    .processo-icon img {
        width: 80px;
        height: 80px;
    }
    
    .processo-card h3 {
        font-size: 1.1rem;
    }
    
    .processo-card li,
    .processo-card p {
        font-size: 0.85rem;
    }
    
    .btn-agendar-como-funciona {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Feedbacks Mobile Extra Small */
@media (max-width: 480px) {
    .feedbacks {
        padding: 40px 15px;
    }
    
    .feedbacks-container {
        padding: 0 1rem;
    }
    
    .feedbacks h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .feedback-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
        border-radius: 15px;
    }
    
    .patient-name {
        font-size: 1.2rem;
    }
    
    .stars {
        font-size: 1.6rem;
        margin: 1rem 0;
    }
    
    .feedback-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .btn-agendar-feedbacks {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin-top: 2.5rem;
    }
    
    .carousel-prev {
        left: -17px;
    }
    
    .carousel-next {
        right: -17px;
    }
    
    .btn-agendar-feedbacks {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Seção Contato e Localização */
.contato-localizacao {
    background: #5a422e;
    padding: 5rem 0;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.contato-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contato-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contato-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contato-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ece1d5;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: center;
}

.mapa-container {
    width: 100%;
    height: 420px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.clinica-info {
    width: 100%;
    height: 360px;
    padding: 2rem;
    background: rgba(114, 93, 74, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-left: -3rem;
    z-index: 2;
    position: relative;
}

.informacoes-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clinica-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-align: left;
}

.info-item {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: left;
}

.info-item .label {
    color: #F4D03F;
    font-weight: bold;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4e4a6;
    margin-bottom: 0.2rem;
}

.info-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.info-item a {
    color: #f4e4a6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsividade para Contato e Localização */
@media (max-width: 768px) {
    .contato-localizacao {
        padding: 3rem 0;
    }
    
    .contato-content {
        padding: 0 1rem;
    }
    
    .contato-header {
        margin-bottom: 3rem;
    }
    
    .contato-header h2 {
        font-size: 2rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mapa-container {
        height: 300px;
    }
    
    .clinica-info {
        width: 100%;
        height: auto;
        padding: 1.5rem;
        margin-left: 0;
        position: static;
        z-index: auto;
    }
    
    .clinica-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contato-localizacao {
        padding: 2rem 0;
    }
    
    .contato-header h2 {
        font-size: 1.8rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-container {
        height: 250px;
    }
    
    .clinica-info {
        width: 100%;
        height: auto;
        padding: 1rem;
        margin-left: 0;
        position: static;
        z-index: auto;
    }
    
    .clinica-info h3 {
        font-size: 1.3rem;
    }
    
    .info-item strong {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
}

/* Estilos para novos elementos dos tratamentos */
.tratamento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tratamento-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.tratamento-benefits {
    margin: 15px 0;
}

.benefit-item {
    font-size: 14px;
    margin: 8px 0;
    color: #333;
    line-height: 1.4;
}

.tratamento-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.tratamento-time, .tratamento-age {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.btn-tratamento {
    display: inline-block;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-tratamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

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

.tratamentos-label {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tratamentos-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .tratamento-badge {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .tratamento-icon {
        font-size: 24px;
    }
    
    .benefit-item {
        font-size: 13px;
    }
    
    .tratamento-info {
        justify-content: center;
    }
    
    .btn-tratamento {
        width: 100%;
        padding: 15px 20px;
    }
    
    .tratamentos-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

/* Seção FAQ */
.faq {
    background-color: #5a422e;
    padding: 80px 0;
    color: #ece1d5;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(114, 93, 74, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-card:hover {
    background: rgba(134, 113, 94, 0.95);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ece1d5;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #D4AF37;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-card.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #ece1d5;
    margin: 0;
    opacity: 0.9;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-card.active .faq-answer {
        padding: 0 25px 20px 25px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-card.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    .faq-icon {
        font-size: 1.3rem;
        min-width: 25px;
    }
}

/* ===== RODAPÉ ===== */
.footer {
    background-image: url('fundo rodape.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 3rem 0 2rem;
    margin-top: 0;
}



.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo img {
    height: 120px;
    width: auto;
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-info {
    text-align: center;
    color: #333;
}

.footer-responsibility {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-weight: 600;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 600;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo img {
        height: 100px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .footer-responsibility {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}