/* --- ESTILOS GERAIS --- */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #FEFBF8; 
    color: #4A2E2C;
    overflow-x: hidden;
}

/* Elegância: Espaçamento entre letras para títulos */
h1, h2, h3, .font-display { 
    font-family: 'Playfair Display', serif; 
    letter-spacing: 0.02em; /* Toque sutil de sofisticação */
}

/* --- CABEÇALHO --- */
.header-title-font { 
    font-family: 'Playfair Display', serif; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
} 

/* --- CORES BASE --- */
.text-rose-gold { color: #B76E79; }
.bg-rose-gold { background-color: #B76E79; }
.border-rose-gold { border-color: #B76E79; }
.hover\:text-rose-gold:hover { color: #B76E79; }

/* --- EFEITO METAL DOURADO --- */
.text-gold { 
    color: #b4925a; 
}

.bg-gold {
    background: linear-gradient(145deg, #d4b57d, #b4925a 50%, #8a6c3a);
    border-bottom: 2px solid #8a6c3a;
    border-right: 1px solid #8a6c3a;
    border-left: 1px solid #d4b57d;
    border-top: 1px solid #d4b57d;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Transição mais suave e elegante */
}
.bg-gold:hover {
    background: linear-gradient(145deg, #e0c28a, #c09e5c 50%, #977641);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.border-gold { border-color: #b4925a; }

/* --- BOTÕES ELEGANTES (NOVO) --- */
.btn-elegant {
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* --- ANIMAÇÕES --- */
.btn-pulse { animation: pulse-shadow 3s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(183, 110, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

/* --- DECORAÇÃO DE TÍTULO --- */
.section-title-decoration::after {
    content: '';
    display: block;
    width: 80px; /* Menor e mais delicado */
    height: 3px;
    background: linear-gradient(to right, #d4b57d, #b4925a, #8a6c3a);
    margin: 1.5rem auto 0;
}

.section-title-decoration-left::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4b57d, #b4925a, #8a6c3a);
    margin: 1.5rem 0;
}

/* --- SWIPER SLIDER --- */
.swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    transition: all 0.4s ease;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #d4b57d;
    opacity: 1;
    transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: #d4b57d;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Verde oficial WhatsApp para melhor reconhecimento */
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- GALERIA DE FAMOSOS (GRID) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}