:root {
    --primary-soft: #fdf6f6;
    --accent-gold: #c5a880;
    --navy: #1a237e;
    --rosa-luxo: #d390a1; /* A cor do seu botão */
    --text-muted: #757575;
    --white: #ffffff;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background-color: var(--primary-soft); 
    color: var(--navy); 
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero {
    height: 75vh;
    /* Gradiente mais suave para a foto brilhar mas o texto ser lido */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('img/capa.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-family: "Ephesis", cursive; 
    font-weight: 300;
    font-size: 6rem; 
    color: #fff;
    
    line-height: 0.8; 
    margin-bottom: 80px; 
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    letter-spacing: 4px;
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 40px;
     /* Dá respiro após o nome Vitiniski */
}

.btn-primary {
    margin-top: 20px;
    background: var(--rosa-luxo);
    color: white;
    border: 30px;
    padding: 18px 45px;
    border-radius: 50;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #c27d8f;
    transform: translateY(-2px);
}

/* --- SERVIÇOS --- */
.section { padding: 60px 25px; }

.section h2 {
    font-family: 'Hurricane', cursive; 
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy);
}

.service-card {
    background: var(--white);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* ESSENCIAL: permite que o conteúdo pule para a linha de baixo */
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
}

.service-info {
    display: flex;
    flex-direction: column; /* Força um embaixo do outro */
    gap: 5px;
    flex: 1; /* Ocupa o espaço máximo disponível à esquerda */
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
    margin-left: 15px; /* Espaço para não encostar no texto */
    white-space: nowrap; /* Impede que o € e o número se separem */
}

.details {
    display: none; /* Controlado pelo JS */
    width: 100%;   /* Ocupa a linha toda */
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
    
    /* Centralização do texto */
    text-align: center; 
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- MODAL DE AGENDAMENTO --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--white);
    margin: 15% auto;
    padding: 40px 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 0; /* Minimalista */
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.date-input {
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9; /* Fundo leve para não ficar em branco */
    color: #333;               /* Cor do texto */
    font-size: 1rem;
    appearance: none;          /* Remove estilos padrão do sistema */
    -webkit-appearance: none;
    position: relative;
}

.date-input::before {
    content: 'Selecionar data e hora ';
    color: #aaa;
    margin-right: 10px;
    font-size: 0.9rem;
}

.date-input:focus::before,
.date-input:valid::before {
    display: none;
}

/* REMOÇÃO DO BOTÃO FLUTUANTE */
.whatsapp-float {
    display: none !important;
}
