/* RESET E DEFINIÇÕES */
* { margin: 0 !important; padding: 0; box-sizing: border-box !important; }
body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; background: #fff; }

/* NAVBAR DOURADA SÓLIDA */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 8% !important; background: #D4AF37;
    position: fixed; top: 0; width: 100%; z-index: 9999;
}
.logo { font-family: 'Playfair Display', serif; font-weight: 900; color: #0A192F; text-decoration: none; font-size: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #0A192F; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.nav-cta { background: #0A192F; color: #D4AF37 !important; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: 900; font-size: 0.8rem; }

/* HERO SLIDER */
.swiper { width: 100%; height: 100vh; }
.slide-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.swiper-slide-active .slide-bg-image { animation: kenburns 8s ease-out forwards; }

.hero-content { position: relative; z-index: 2; text-align: center; color: white; padding-top: 100px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 1rem; }
.btn-main { display: inline-block; padding: 15px 40px; background: #D4AF37; color: #0A192F; text-decoration: none; font-weight: 800; border-radius: 50px; }

/* SEÇÃO SOCIAL E MAPS */
.social-section { padding: 100px 8%; background: #f9f9f9; }
.container-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* INSTAGRAM VIBRANTE COM PULSAÇÃO */
.btn-insta-vibrante {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
    color: white; padding: 20px 40px; border-radius: 50px;
    text-decoration: none; font-weight: 900; font-size: 1rem;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
    animation: pulse-insta 2s infinite; transition: 0.3s;
}
@keyframes pulse-insta {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.google-rating { margin: 20px 0; font-weight: 700; color: #0A192F; }
.stars { color: #D4AF37; font-size: 1.5rem; }

.maps-wrapper { border: 5px solid #D4AF37; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* FOOTER */
.footer { background: #D4AF37; padding: 60px 8% 20px; color: #0A192F; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 40px; }
.credits { text-align: center; padding-top: 20px; font-size: 0.8rem; }

/* MOBILE */
@media (max-width: 768px) {
    .container-split { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
}

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; z-index: 10000; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }