/* Variables Globales */
:root {
    --brand-dark: #121212;
    --brand-dark-elegant: #1a1a1d;
    --brand-pink: #E0A9AF;
    --brand-pink-dark: #c98c92;
    --bg-soft: #fdfafb;
    --bg-insta: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    --bg-facebook: #1877F2;
    --shadow-premium: 0 15px 35px rgba(0,0,0,0.06);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Clases Utilitarias */
.font-serif { font-family: 'Cormorant Garamond', serif; }
.title-serif { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; line-height: 1.1; }
.text-pink { color: var(--brand-pink) !important; }
.tracking-wide { letter-spacing: 1.5px; }
.tracking-widest { letter-spacing: 3px; }
.py-6 { padding: 6rem 0; }
.bg-soft { background-color: var(--bg-soft); }
.bg-dark-elegant { background-color: var(--brand-dark-elegant); }
.bg-black { background-color: #0a0a0a; }

/* Navbar Glassmorphism */
.custom-navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.custom-navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    color: #fff !important;
    letter-spacing: 4px;
    font-size: 1.6rem;
    font-weight: 600;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-link:hover { color: var(--brand-pink) !important; }

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05); /* Efecto cinemático */
}

.hero-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(18,18,18,0.8) 0%, rgba(18,18,18,0.4) 100%);
}

.hero-content { position: relative; z-index: 5; }
.shadow-text { text-shadow: 0 4px 15px rgba(0,0,0,0.3); }

.badge-premium {
    display: inline-block;
    border: 1px solid var(--brand-pink);
    color: var(--brand-pink);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-glow {
    background: var(--brand-pink);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(224, 169, 175, 0.3);
}

.btn-glow:hover {
    background: var(--brand-pink-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 169, 175, 0.5);
}

/* Composición de Imágenes (Nosotros) */
.image-composition { position: relative; padding-right: 30px; padding-bottom: 30px; }
.img-main { width: 100%; height: auto; object-fit: cover; }
.img-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    border: 10px solid #fff;
    z-index: 2;
}

/* Tarjetas de Servicio */
.service-card-modern {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium) !important;
}

.service-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-img { transform: scale(1.05); }
.service-content { padding: 35px 25px; }

/* Carrusel de Reseñas Premium */
.testimonial-box { max-width: 850px; padding: 20px; }
.carousel-indicators { bottom: -50px; }
.carousel-indicators [data-bs-target] {
    background-color: var(--brand-pink);
    width: 12px; height: 12px; border-radius: 50%; border: none; opacity: 0.5; transition: 0.3s;
}
.carousel-indicators .active { opacity: 1; transform: scale(1.2); }

/* Redes Sociales - Altura Fija Perfecta */
.social-card-v2 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 550px; /* EL SECRETO DE LA SIMETRÍA */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.social-card-v2:hover { box-shadow: var(--shadow-premium) !important; }

.social-card-header {
    font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
}

.social-card-body {
    flex-grow: 1;
    overflow-y: auto; /* Scroll interno limpio */
    scrollbar-width: thin; /* Firefox */
}

/* Personalizar Scrollbar interno */
.social-card-body::-webkit-scrollbar { width: 6px; }
.social-card-body::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.1); border-radius: 10px; }

.bg-insta { background: var(--bg-insta); }
.bg-facebook { background: var(--bg-facebook); }

/* Contacto y Elementos Finales */
.icon-circle {
    width: 45px; height: 45px;
    border-radius: 50%;
    background-color: rgba(224, 169, 175, 0.1);
    color: var(--brand-pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.transition-link { transition: color 0.3s ease; }
.transition-link:hover { color: var(--brand-pink) !important; }

/* Ajustes Responsive para Títulos */
@media (max-width: 768px) {
    .title-serif { font-size: 2.5rem; }
    .display-1 { font-size: 3rem; }
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP (CONVERSIÓN)
   ========================================================================== */
.floating-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #20b858;
    animation: none; /* Detiene el pulso al poner el mouse encima */
}

/* Animación de pulso para llamar la atención sutilmente */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajuste del botón en móviles para que no estorbe */
@media (max-width: 768px) {
    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}