:root {
    --nude: #EAD7C3;
    --nude-light: #F5EBDD;
    --nude-dark: #D9C3A8;
    --graphite: #2C2C2C;
    --gold: #D4AF37;
    --gold-light: #E6C860;
    --gold-dark: #A8871E;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--nude);
    color: var(--graphite);
    overflow-x: hidden;
    box-sizing: border-box;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* CTA pulsante */
@keyframes goldPulse {
    0%,
    100% {
        box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.6), 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.pulse-gold {
    animation: goldPulse 2.5s infinite;
}

/* Brilho flutuante */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Fade In on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax backgrounds */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Texto com gradiente dourado */
.gold-gradient {
    background: linear-gradient(135deg, #A8871E 0%, #D4AF37 50%, #E6C860 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divisor ornamental */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ornament::before,
.ornament::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Estilos do cartão de serviço */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card .overlay {
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9) 0%, rgba(44, 44, 44, 0.3) 60%, transparent 100%);
}

/* Estilos do calendário */
.cal-day {
    transition: all 0.25s ease;
    cursor: pointer;
}

.cal-day:hover:not(.disabled):not(.selected) {
    background: var(--nude-dark);
}

.cal-day.selected {
    background: var(--gold);
    color: white;
    font-weight: 600;
}

.cal-day.disabled {
    color: #c0b5a7;
    cursor: not-allowed;
}

.cal-day.today {
    border: 1px solid var(--gold);
}

.time-slot {
    transition: all 0.25s ease;
    cursor: pointer;
}

.time-slot:hover:not(.selected) {
    border-color: var(--gold);
    background: var(--nude-light);
}

.time-slot.selected {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* WhatsApp flutuante */
.whats-float {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Barra superior reduzida */
.header-scrolled {
    background: rgba(234, 215, 195, 0.95) !important;
    backdrop-filter: blur(12px);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-scrolled .logo-text {
    font-size: 1.5rem !important;
}

/* Ícone de diferenciais com brilho */
.diff-icon {
    position: relative;
    transition: all 0.4s ease;
}

.diff-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.diff-card:hover .diff-icon::before {
    inset: -14px;
    opacity: 0.6;
}

.diff-card:hover .diff-icon {
    transform: rotate(5deg) scale(1.05);
}

/* Botão de luxo */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    background-size: 200% 200%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
}

/* Padrão de sobreposição do herói */
.hero-bg {
    background-image: linear-gradient(135deg, rgba(234, 215, 195, 0.85) 0%, rgba(234, 215, 195, 0.75) 100%), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

/* Seta de rolagem */
@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

.scroll-arrow {
    animation: scrollBounce 2s infinite;
}

/* Animações de escalonamento */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--graphite);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast .check-ic {
    color: var(--gold);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Spinner numérico */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

:root {
    --impulso-blue: #0067ff;
    --white: #FFFFFF;
}

.impulso-modal {
    display: none; 
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999; /* Garante que fique acima de tudo */
    width: 90%;
    max-width: 400px;
    background-color: var(--white);
    border: 2px solid var(--impulso-blue);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.impulso-modal.active {
    display: block;
    animation: impulsoSlideUp 0.5s ease-out;
}

@keyframes impulsoSlideUp {
    from { bottom: -100px; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

.impulso-content {
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

/* Botão de Fechar Melhorado */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 35px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: 10px; /* Área de clique aumentada */
    z-index: 1000001;
    transition: color 0.2s;
}

.close-btn:hover { color: var(--impulso-blue); }

.impulso-header {
    color: var(--impulso-blue);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.headline { color: #222; font-size: 1.1rem; margin-bottom: 10px; }
.subline { color: #666; font-size: 0.9rem; margin-bottom: 20px; }

.impulso-btn {
    display: block;
    background-color: var(--impulso-blue);
    color: #fff !important;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 103, 255, 0.3);
}