/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* Vídeo de Fundo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background picture,
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Header - TAMANHO AUMENTADO */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Barra laranja ativa que aparece no scroll */
.header.scrolled {
    background: rgba(213, 115, 28, 0.95); /* Laranja #D5731C */
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px; /* AUMENTADO de 20px para 30px */
    position: relative;
}

/* Navegação Esquerda */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px; /* REDUZIDO de 60px para 40px - MAIS PRÓXIMO DO LOGO */
    flex: 1;
}

/* Navegação Direita */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px; /* REDUZIDO de 60px para 40px - MAIS PRÓXIMO DO LOGO */
    flex: 1;
    justify-content: flex-end;
}

/* Navegação Central - Logotipo */
.nav-center {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 120px; /* AUMENTADO de 100px para 120px */
    width: auto;
}

/* SELETOR DE IDIOMA CORRIGIDO - SEMPRE MOSTRA EN|PT */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.language-text.active {
    color: #1A1A1A; /* Alterado para preto */
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.language-text:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.language-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin: 0 4px;
}

/* Links de Navegação */
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
    transform: translateY(-1px);
}

/* DROPDOWN FOLLOW US - Funcionalidade de clique */
.follow-us-dropdown {
    position: relative;
    display: inline-block;
}

.follow-us-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
}

.follow-us-btn:hover {
    color: white;
    transform: translateY(-1px);
}

/* Follow Dropdown Content - Melhorado para aparecer no clique */
.follow-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 2, 9, 0.95); /* Marrom #120209 */
    backdrop-filter: blur(10px);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1001;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Mostrar dropdown quando a classe 'show' está ativa */
.follow-dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInDown 0.3s ease;
}

/* Manter dropdown visível quando o mouse está sobre ele (para hover) */
.follow-us-dropdown:hover .follow-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInDown 0.3s ease;
}

.follow-dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.follow-dropdown-item:last-child {
    border-bottom: none;
}

.follow-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.follow-dropdown-item .location-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white; /* Branco */
}

.instagram-handle {
    font-size: 12px;
    font-weight: 400;
    color: white; /* Branco */
    font-style: italic;
}

/* BOTÃO BOOK NOW MODIFICADO - SEM DROPDOWN */
.book-now-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.book-now-btn:hover {
    background: rgba(213, 115, 28, 0.3); /* Laranja #D5731C */
    border-color: #D5731C;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Linha branca fixa por baixo do header */
.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Conteúdo Principal */
.main-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-wrapper {
    text-align: center;
    color: white;
    z-index: 1;
}

/* Texto Principal */
.main-text {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.hero-title {
    color: white;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

/* Botão Enter - ATUALIZADO COM NOVA COR */
.enter-button-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.enter-btn {
    background: #D5731C; /* Laranja #D5731C */
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enter-btn:hover {
    background: #b55f17; /* Laranja mais escura */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(213, 115, 28, 0.3);
}

/* Seção About Us - Melhorada */
.about-section {
    background: #F4EFE4;
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cabeçalho da Seção */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #D5731C; /* Laranja #D5731C */
    margin: 0 auto;
}

/* Conteúdo About - Layout melhorado */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #3D2B1F;
}

.intro-text {
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 25px;
}

/* Highlights de Experiência - Layout melhorado */
.experience-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.highlight-item {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #1A1A1A; /* Alterado para preto */
    margin-bottom: 12px;
}

.highlight-text {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container das Imagens About - Layout Vertical */
.about-images-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 50px 30px 35px;
    color: white;
}

.image-caption {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
}

/* Seção Our Treatment - Imagens horizontais */
.treatment-section {
    background: #FAF9EB;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

/* Linhas decorativas */
.treatment-line-vertical {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #DFD9C3;
    z-index: 1;
}

.treatment-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #DFD9C3;
    z-index: 1;
}

.treatment-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Título principal */
.treatment-title-section {
    position: sticky;
    top: 120px;
}

.treatment-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: #1A1A1A; /* Alterado para preto */
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

/* Seção Prices com seta - Adicionado cursor pointer */
.prices-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prices-section:hover {
    transform: scale(1.1);
}

.prices-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1A1A1A; /* Alterado para preto */
    transition: all 0.3s ease;
}

.prices-arrow {
    transition: all 0.3s ease;
    color: #1A1A1A; /* Alterado para preto */
}

.prices-section:hover .prices-arrow {
    transform: translateX(5px);
}

/* CONTAINER DOS BOTÕES DE PREÇOS - POSICIONADO MAIS À DIREITA */
.price-buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px; /* Aumentar padding à esquerda para mover mais à direita */
    gap: 40px;
}

/* NOVOS BOTÕES - BODY MASSAGE TREATMENT E FACIAL MASSAGE */
.body-massage-section,
.facial-massage-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.body-massage-section:hover,
.facial-massage-section:hover {
    transform: scale(1.1);
}

.body-massage-section .prices-text,
.facial-massage-section .prices-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1A1A1A; /* Alterado para preto */
    transition: all 0.3s ease;
}

.body-massage-section .prices-arrow,
.facial-massage-section .prices-arrow {
    transition: all 0.3s ease;
    color: #1A1A1A; /* Alterado para preto */
}

.body-massage-section:hover .prices-arrow,
.facial-massage-section:hover .prices-arrow {
    transform: translateX(5px);
}

/* Container dos serviços */
.treatment-services {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Primeira fileira - 3 serviços */
.treatment-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid #DFD9C3;
}

/* Segunda fileira - 1 serviço */
.treatment-row-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

/* Serviços da primeira fileira */
.treatment-service {
    padding: 40px 30px;
    border-right: 1px solid #DFD9C3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 750px;
}

.treatment-service:last-child {
    border-right: none;
}

/* Serviço da segunda fileira */
.treatment-service-single {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 650px;
}

/* Container da imagem - IMAGENS HORIZONTAIS */
.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conteúdo do serviço */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
    justify-content: space-between;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #1A1A1A; /* Alterado para preto */
    line-height: 1.3;
}

.service-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #938D6C;
    flex: 1;
}

/* Botão de reserva */
.service-button {
    background: #1A1A1A; /* Alterado para preto */
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 0;
    margin-top: auto;
}

.service-button:hover {
    background: #333333; /* Preto mais claro no hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
}

/* NOVA SEÇÃO PHILOSOPHY - Layout Evoluzion Exato Atualizado */
.philosophy-section {
    background: #9b926e;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 40% 35% 25%;
    gap: 0;
    align-items: stretch;
    min-height: 100vh;
}

/* Imagem Principal à Esquerda - Encostada na borda exata */
.philosophy-image-left {
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Conteúdo Central - Centrado como Evoluzion */
.philosophy-content {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: 100vh;
}

.philosophy-text-wrapper {
    max-width: 500px;
    width: 100%;
}

.philosophy-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F5F5F0;
    margin-bottom: 30px;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #F5F5F0;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.philosophy-title em {
    font-style: italic;
    font-weight: 400;
}

.philosophy-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #F5F5F0;
    font-weight: 300;
}

/* Seção Direita - Layout Evoluzion Atualizado */
.philosophy-right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    position: relative;
    padding: 60px 20px 40px 20px;
}

/* Imagem Pequena à Direita - Posicionada mais acima como Evoluzion */
.philosophy-image-right {
    width: 180px;
    height: 250px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin-top: 40px;
    flex-shrink: 0;
}

.right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Texto Decorativo à Direita - Posicionado na parte inferior como Evoluzion */
.philosophy-decorative-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-top: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}

.decorative-text-line {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 300;
    color: #F5F5F0;
    margin-bottom: 5px;
    line-height: 1.2;
}

.decorative-text-line em {
    font-style: italic;
    font-weight: 400;
}

/* Secção de Testemunhos */
.testimonials-section {
    background-color: #F5F1E8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Cabeçalho da Secção */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #8B7355;
    margin: 0;
}

/* Setas de Navegação */
.navigation-arrows {
    display: flex;
    gap: 20px;
    align-items: center;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: #8B7355;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.arrow-btn:hover {
    background-color: rgba(139, 115, 85, 0.1);
    color: #6B5B47;
    transform: scale(1.1);
}

.arrow-btn:active {
    transform: scale(0.95);
}

.arrow-btn svg {
    width: 24px;
    height: 16px;
}

/* Container dos Testemunhos */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* Cartões de Testemunho */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 380px;
    max-width: 420px;
    background: transparent;
    border: 1px solid #C8B99C;
    padding: 35px 25px;
    position: relative;
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #B8A082;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5A5A5A;
    margin-bottom: 25px;
    flex: 1;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8B7355;
    text-align: left;
    margin-top: auto;
    padding-top: 15px;
}

/* NOVA SEÇÃO CONTACT US - IMAGEM SEM AMPLIAÇÃO */
.contact-section {
    background: #F0E8D6; /* Cor bege claro conforme solicitado */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 40px;
}

/* Container principal */
.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* CONTEÚDO CENTRALIZADO À ESQUERDA */
.contact-content-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Título principal - Estilo conforme imagem de referência */
.contact-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.contact-main-title em {
    font-style: italic;
    font-weight: 400;
}

/* Seção Visit Us */
.visit-us-section {
    margin-bottom: 50px;
    width: 100%;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 35px;
}

/* Itens de localização */
.location-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(200, 185, 156, 0.3);
}

.location-item:last-of-type {
    border-bottom: none;
}

.contact-section .location-name {
    color: #8B7355;
}

.contact-section .location-address {
    color: #000000;
}

/* Beach locations - Estilo especial */
.beach-locations .location-name {
    color: #8B7355;
}

.beach-locations .location-address {
    font-style: italic;
}

/* Horários de funcionamento */
.opening-hours {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(200, 185, 156, 0.5);
}

.hours-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.hours-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5A5A5A;
    margin: 0;
}

/* Botão Book Now - Estilo conforme imagem */
.contact-book-btn {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #C8B99C;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-book-btn:hover {
    background: #D5731C; /* Laranja #D5731C */
    color: white;
    border-color: #D5731C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 115, 28, 0.2);
}

/* IMAGEM SEM AMPLIAÇÃO - REMOVIDO HOVER SCALE */
.contact-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.contact-image {
    width: 100%;
    max-width: 500px; /* AUMENTADO de 400px para 500px */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* NOVO RODAPÉ - INSPIRADO NO EVOLUZION COM NOVA COR */
.footer {
    background: #1E0C0F; /* Nova cor solicitada #1E0C0F */
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

/* Seções laterais do rodapé */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37; /* Dourado */
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

/* Seção central do rodapé */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-container {
    margin-bottom: 30px;
}

.footer-logo {
    height: 200px; /* AUMENTADO de 120px para 200px */
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    margin-bottom: 40px;
}

.tagline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 10px;
    display: block;
}

.tagline-main {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #D4AF37;
    margin: 10px 0;
    letter-spacing: 3px;
}

.tagline-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.tagline-description {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.footer-book-btn {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.footer-book-btn:hover {
    background: #D4AF37;
    color: #1E0C0F; /* Nova cor do rodapé #1E0C0F */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Informações de negócio */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-phone {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 10px;
}

.footer-address {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-hours {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-email-section {
    margin-top: 20px;
}

.email-title {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 8px;
}

.footer-email {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #D4AF37;
}

/* Linha divisória */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

/* Rodapé inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.footer-credit {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .treatment-container {
        grid-template-columns: 280px 1fr;
        gap: 60px;
        padding: 60px 30px;
    }
    
    .treatment-main-title {
        font-size: 3.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .navbar {
        padding: 25px 40px; /* Ajustado para responsividade */
    }
    
    .logo {
        height: 100px; /* Ajustado para responsividade */
    }
    
    /* Ajustar gaps para telas menores */
    .nav-left {
        gap: 30px; /* Reduzido ainda mais para telas menores */
    }
    
    .nav-right {
        gap: 30px; /* Reduzido ainda mais para telas menores */
    }
}

@media (max-width: 968px) {
    .treatment-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .treatment-title-section {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .treatment-main-title {
        font-size: 2.8rem;
    }
    
    .treatment-row-top {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .treatment-row-bottom {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .treatment-service {
        border-right: none;
        border-bottom: 1px solid #DFD9C3;
        padding: 30px 20px;
        min-height: auto;
    }
    
    .treatment-service:last-child {
        border-bottom: none;
    }
    
    .treatment-service-single {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .treatment-line-vertical,
    .treatment-line-horizontal {
        display: none;
    }
    
    .prices-section,
    .body-massage-section,
    .facial-massage-section {
        justify-content: center;
        margin-top: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images-container {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .image-wrapper {
        max-width: 300px;
        flex: 1;
        min-width: 280px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact-content-center {
        align-items: center;
        text-align: center;
    }
    
    .navbar {
        padding: 20px 30px;
    }
    
    .logo {
        height: 90px;
    }
    
    /* Ajustar gaps para tablets */
    .nav-left {
        gap: 25px;
    }
    
    .nav-right {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .nav-center {
        position: static;
        transform: none;
        order: -1;
        flex: 1;
    }
    
    .logo {
        height: 60px;
    }
    
    .main-text {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .about-image {
        height: 220px;
    }
    
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .treatment-main-title {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 35px;
        text-align: center;
    }
    
    .testimonials-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        flex: 0 0 calc(100% - 0px);
        padding: 25px 20px;
    }
}

