/* CSS Personalizado - Studio Riniere (Estética & Massoterapia) */

/* Variáveis de Estilo - Paleta do Catálogo Oficial (Rosa e Vinho/Bordô) */
:root {
    --primary: #c9887e;        /* Rosa Médio / Seco */
    --primary-hover: #b6756b;  /* Rosa Mais Escuro */
    --primary-light: #fae6e3;  /* Rosa Blush Claro (Fundo do catálogo) */
    --secondary: #5e1d35;      /* Vinho / Bordô Oficial */
    --secondary-hover: #481225; /* Vinho Escuro */
    --accent: #e59c95;         /* Rosa Rosé do Voucher */
    --bg-light: #fae6e3;       /* Fundo rosa claro do catálogo */
    --bg-white: #ffffff;       /* Branco puro para blocos e cards */
    --text-dark: #3a1923;      /* Texto em tons de vinho escuro */
    --text-muted: #7d5964;     /* Texto secundário */
    --font-titles: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px rgba(94, 29, 53, 0.05);
    --shadow-md: 0 10px 30px rgba(94, 29, 53, 0.08);
    --shadow-lg: 0 20px 40px rgba(94, 29, 53, 0.12);
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(94, 29, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 29, 53, 0.4);
}

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

.btn-secondary:hover {
    background-color: rgba(94, 29, 53, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Títulos Globais */
.section-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.25;
    text-align: center;
}

.section-description {
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--text-muted);
}

/* Cabeçalho Fixo (Header) com Efeito de Vidro */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 230, 227, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 29, 53, 0.15);
    transition: var(--transition);
    padding: 10px 0;
}

.main-header.scrolled {
    padding: 5px 0;
    background-color: rgba(250, 230, 227, 0.95);
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.main-header.scrolled .logo-img {
    height: 60px;
}

.logo-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 400;
}

.logo-main {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2px;
}

/* Menu de Navegação */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

/* Botão do Cabeçalho */
.btn-contact-nav {
    border: 1px solid var(--secondary);
    padding: 8px 20px !important;
    border-radius: 20px;
    transition: var(--transition);
}

.btn-contact-nav::after {
    display: none;
}

.btn-contact-nav:hover {
    background-color: var(--secondary);
    color: var(--bg-white) !important;
}

/* Botão do Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Seção Banner Principal (Hero) */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 29, 53, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-titles);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: #fce8e6;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 550px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.hero-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Estilo para Título de Páginas Internas */
.page-title-section {
    position: relative;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 29, 53, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section .section-subtitle {
    color: var(--primary-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-family: var(--font-titles);
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-subtitle-desc {
    font-size: 1rem;
    color: #fce8e6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Destaques Rápidos */
.highlights-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(94, 29, 53, 0.08);
    transition: var(--transition);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 29, 53, 0.3);
}

.highlight-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Seção Sobre Nós (Resumo Home) */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--secondary);
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--secondary);
}

.image-placeholder i {
    font-size: 3.5rem;
}

.image-placeholder span {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    font-weight: 600;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Conteúdo da Página Sobre (sobre.html) */
.about-page-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-page-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.about-page-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-subheading {
    font-family: var(--font-titles);
    font-size: 1.6rem;
    color: var(--secondary);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-page-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-page-card {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(94, 29, 53, 0.05);
}

.about-page-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.about-page-card h4 {
    font-family: var(--font-titles);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.about-page-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Seção Serviços e Abas (catalogo.html) */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Menu de Abas */
.tabs-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: var(--bg-white);
    border: 1px solid rgba(94, 29, 53, 0.2);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    background-color: var(--primary-light);
    color: var(--secondary);
}

.tab-btn.active {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(94, 29, 53, 0.3);
}

/* Conteúdo das Abas */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(94, 29, 53, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(94, 29, 53, 0.25);
}

/* Info do Topo do Card */
.service-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-light);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(94, 29, 53, 0.15);
    font-weight: 600;
}

.service-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-price {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 700;
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-family: var(--font-titles);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.service-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.service-desc-detail {
    color: var(--text-muted);
    font-size: 0.85rem !important;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 20px !important;
    flex-grow: 1;
}

/* Botão de Adicionar ao Carrinho */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background-color: var(--secondary);
    color: var(--bg-white);
    border: none;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: auto;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(94, 29, 53, 0.2);
}

.btn-add-cart.added {
    background-color: #25d366;
    color: white;
}

/* Estilo do Pacote SPA */
.spa-card {
    border-top: 3px solid var(--secondary);
}

.spa-components {
    background-color: var(--primary-light);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
    font-size: 0.85rem !important;
    color: var(--text-dark);
    margin-bottom: 20px !important;
    flex-grow: 1;
}

/* Grid de Informações Especiais (informacoes.html) */
.info-page-cards {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card-text {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(94, 29, 53, 0.1);
    box-shadow: var(--shadow-sm);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.info-card-header i {
    font-size: 2.2rem;
    color: var(--secondary);
}

.info-card-header h3 {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: var(--secondary);
}

.info-card-body p {
    font-size: 0.92rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-card-body li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.warning-text {
    background-color: #fff3f2;
    border-left: 4px solid #e74c3c;
    padding: 12px 16px;
    border-radius: 4px 8px 8px 4px;
    color: #c0392b !important;
}

/* Seção Contato */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-block .section-title {
    text-align: left;
}

.contact-info-block .section-subtitle {
    text-align: left;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary);
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Links clicáveis de contato */
.contact-clickable-link {
    color: var(--secondary);
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-clickable-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Mapa Placeholder */
.contact-interactive {
    height: 450px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(94, 29, 53, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #fcece9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-message {
    max-width: 300px;
}

.map-message i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.map-message h3 {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.map-message p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Rodapé (Footer) */
.main-footer {
    background-color: var(--secondary);
    color: #fcece8;
    padding: 80px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo-main {
    color: var(--bg-white);
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-titles);
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.footer-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.1rem;
}

.footer-social .social-icons a:hover {
    background-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   ELEMENTOS DE E-COMMERCE (CARRINHO E MODAL)
   ========================================================================== */

/* Botão Flutuante do Carrinho */
.cart-float-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: var(--bg-white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(94, 29, 53, 0.3);
    z-index: 998;
    cursor: pointer;
    transition: var(--transition);
}

.cart-float-btn:hover {
    transform: scale(1.1);
    background-color: var(--secondary-hover);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #25d366;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary);
}

/* Painel Lateral do Carrinho (Drawer) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -5px 0 25px rgba(94, 29, 53, 0.15);
    z-index: 1005;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(94, 29, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-light);
}

.cart-sidebar-header h3 {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    color: var(--secondary);
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart-btn:hover {
    transform: rotate(90deg);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: auto 0;
    line-height: 1.6;
}

/* Item Individual no Carrinho */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--primary-light);
    border-radius: 12px;
    border: 1px solid rgba(94, 29, 53, 0.08);
}

.cart-item-info h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.cart-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 12px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn-remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: var(--transition);
}

.btn-remove-item:hover {
    transform: scale(1.2);
}

/* Rodapé do Carrinho */
.cart-sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(94, 29, 53, 0.1);
    background-color: var(--bg-light);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.cart-summary-row.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    border-top: 1px dashed rgba(94, 29, 53, 0.2);
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
}

.checkout-btn:disabled {
    background-color: #bdc3c7;
    box-shadow: none;
    cursor: not-allowed;
}

/* Overlay do Carrinho e do Modal */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 29, 53, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1004;
    display: none;
}

.cart-overlay.open {
    display: block;
}

/* Modal de Agendamento */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 29, 53, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1006;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal.open {
    display: flex;
}

.booking-modal-content {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.booking-modal-header {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    font-family: var(--font-titles);
    font-size: 1.4rem;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    transform: rotate(90deg);
}

.booking-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
}

/* Estilo do Calendário */
.calendar-section {
    border-right: 1px solid rgba(94, 29, 53, 0.1);
    padding-right: 24px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: none;
    border: 1px solid rgba(94, 29, 53, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-header button:hover {
    background-color: var(--primary-light);
    border-color: var(--secondary);
}

.calendar-header h4 {
    font-family: var(--font-titles);
    font-size: 1.15rem;
    color: var(--secondary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.calendar-day {
    padding: 10px 0;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(.disabled) {
    background-color: var(--primary-light);
    color: var(--secondary);
}

.calendar-day.active-day {
    color: var(--text-dark);
}

.calendar-day.disabled {
    color: #d1c7c9;
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: var(--secondary) !important;
    color: var(--bg-white) !important;
    font-weight: 700;
}

.calendar-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.4;
}

/* Seção de Horários */
.time-section h4 {
    font-family: var(--font-titles);
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.time-hint {
    grid-column: span 3;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 40px 10px;
}

.time-slot {
    padding: 10px;
    border: 1px solid rgba(94, 29, 53, 0.2);
    background-color: var(--bg-white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.time-slot:hover:not(.disabled) {
    background-color: var(--primary-light);
    border-color: var(--secondary);
}

.time-slot.selected {
    background-color: #25d366 !important;
    color: white !important;
    border-color: #25d366 !important;
}

.time-slot.disabled {
    background-color: #f5eceb;
    color: #d1c7c9;
    border-color: #f5eceb;
    cursor: not-allowed;
}

.google-calendar-integration-box {
    background-color: #ebf5fb;
    border-left: 4px solid #3498db;
    padding: 12px 16px;
    border-radius: 4px 8px 8px 4px;
    font-size: 0.8rem;
    color: #2c3e50;
    line-height: 1.4;
}

/* Rodapé do Modal */
.booking-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(94, 29, 53, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background-color: var(--bg-light);
}

.confirm-booking-btn:disabled {
    background-color: #bdc3c7;
    box-shadow: none;
    cursor: not-allowed;
}

/* Responsividade - Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .highlights-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlights-section {
        margin-top: -20px;
        padding: 0 24px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-modal-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .calendar-section {
        border-right: none;
        border-bottom: 1px solid rgba(94, 29, 53, 0.1);
        padding-right: 0;
        padding-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
        transition: var(--transition);
        padding: 80px 30px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .btn-contact-nav {
        width: 100%;
        text-align: center;
    }
    
    .hero-section {
        padding: 140px 0 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .cart-float-btn {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Personalizador de SPA e Ajustes de Abas */
.custom-spa-card {
    border: 2px dashed var(--primary);
    background: linear-gradient(145deg, var(--bg-white), var(--primary-light)) !important;
}

.custom-spa-card h3 {
    color: var(--secondary) !important;
}

#btnTogglePersonalizer:hover {
    background-color: var(--secondary) !important;
    color: var(--bg-white) !important;
}

.personalizer-dropdown {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    transition: var(--transition);
}

.personalizer-dropdown::-webkit-scrollbar {
    width: 6px;
}

.personalizer-dropdown::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.custom-spa-option {
    transition: var(--transition);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.custom-spa-option:hover {
    background-color: rgba(201, 136, 126, 0.15);
}

.custom-spa-option input[type="checkbox"]:disabled + span {
    color: var(--text-muted);
    opacity: 0.6;
    cursor: not-allowed;
}

/* Estilo do subtítulo da aba de Pacotes */
.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 10px 15px;
    height: auto;
    min-height: 55px;
}

/* Info Box do Plano de Tratamento */
.packages-info-box {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

