:root {
   --color-primary: #E7234A; 
   --color-secondary: #F58498; 
   --color-tertiary: #4A4A4A; 
   --color-dark: #3d3d3d; 
   --color-light: #ffffff;
   --glass-bg: rgba(255, 255, 255, 0.6);
   --glass-border: rgba(255, 255, 255, 0.5);
   --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark);
    background-color: #fcf9f9;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }

/* Blobs Background */
.blob-container {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; pointer-events: none;
}
.blob {
    position: absolute; filter: blur(90px); border-radius: 50%;
    animation: float 15s infinite ease-in-out alternate; opacity: 0.5;
}
.shape1 { width: 550px; height: 550px; background: #E7234A; top: -10%; left: -10%; opacity: 0.15; }
.shape2 { width: 500px; height: 500px; background: #4A4A4A; bottom: auto; right: -10%; animation-delay: 2s; opacity: 0.1; }
.shape3 { width: 450px; height: 450px; background: #F58498; top: 40%; left: 30%; animation-delay: 4s; opacity: 0.2; }
@keyframes float { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-50px) scale(1.1); } }

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.glass-nav {
    position: fixed; top: 0; left: 0; right: 0; height: 80px; display: flex;
    justify-content: space-between; align-items: center; padding: 0 5%; z-index: 1000;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
}
.navbar .logo img { height: 60px; width: auto; max-height: 100%; display: block; cursor: pointer; user-select: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--color-dark); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--color-primary); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; }
.hero-content { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: -8vh; }
.badge { display: inline-block; padding: 0.6rem 2rem; background: var(--glass-bg); border-radius: 50px; border: 1px solid var(--color-primary); color: var(--color-dark); font-weight: 600; margin-bottom: 3.5rem; }
.typo-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; line-height: 0.8; }
.typo-celebra { font-family: 'Parisienne', cursive; font-size: clamp(4rem, 10vw, 5rem); color: var(--color-tertiary); margin-bottom: -15px; z-index: 2; }
.typo-amor { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(4rem, 12vw, 6.5rem); color: #E91E63; letter-spacing: -2px; }
.typo-slogan { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 400; color: var(--color-tertiary); margin-bottom: 3rem; letter-spacing: 1.5px; }
.hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4 { opacity: 0; transform: translateY(30px); animation: fadeUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.25s; }
.hero-anim-3 { animation-delay: 0.4s; }
.hero-anim-4 { animation-delay: 0.55s; }
@keyframes fadeUpSmooth { to { opacity: 1; transform: translateY(0); } }
.btn { text-decoration: none; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; color: #fff; background-color: var(--color-primary); transition: transform 0.3s, box-shadow 0.3s; display: inline-block; }
.glass-btn { background: var(--color-primary); backdrop-filter: blur(10px); border: none; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(231, 35, 74, 0.3); }

/* Pajarito */
.bird-container { position: absolute; top: 0; left: 0; width: 60px; height: 60px; pointer-events: none; z-index: 100; will-change: transform; transition: opacity 0.5s ease; }
.bird-svg { width: 100%; height: 100%; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15)); }
.bird-wing { transform-origin: 38px 42px; }
.bird-leg { transition: opacity 0.2s; }
.bird-container.flapping .bird-leg { opacity: 0; }
.bird-container.flapping .bird-wing { animation: flap 0.15s infinite alternate ease-in-out; }
@keyframes flap { from { transform: rotate(0deg); } to { transform: rotate(-45deg) scaleY(0.8); } }

/* Grid System */
.grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Services */
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 800; }
.service-card { padding: 2.5rem 1.5rem; border-radius: 24px; text-align: center; transform-style: preserve-3d; }
.service-card:hover { transform: translateY(-5px); }
.service-icon { font-size: 3rem; margin-bottom: 1.5rem; color: var(--color-primary); transform: translateZ(30px); }
.service-card h3 { font-size: 1.25rem; transform: translateZ(20px); }
.small { font-size: 0.9rem; opacity: 0.8; margin-top: 5px; transform: translateZ(10px); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.about-card { padding: 2.5rem 1.5rem; border-radius: 24px; transition: transform 0.3s; }
.about-card:hover { transform: translateY(-5px); }
.about-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--color-primary); }
.about-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-card p { font-size: 1rem; line-height: 1.6; opacity: 0.9; }

/* Gallery */
.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gallery-item { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }

/* Mapa de Ubicación */
.relative { position: relative; }
.blob-map { position: absolute; z-index: -1; filter: blur(70px); opacity: 0.3; }
.map-wrapper { display: flex; flex-wrap: wrap; background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 30px; overflow: hidden; box-shadow: var(--glass-shadow); padding: 0; }
.map-info { flex: 1 1 400px; padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.map-info .section-title { text-align: left; margin-bottom: 1rem; font-size: 2.5rem; line-height: 1.2; }
.text-left { text-align: left !important; }
.map-desc { font-size: 1.1rem; line-height: 1.6; opacity: 0.85; margin-bottom: 2rem; }
.map-details { list-style: none; padding: 0; margin-bottom: 2.5rem; }
.map-details li { display: flex; align-items: flex-start; margin-bottom: 1.5rem; font-size: 1.1rem; }
.map-details i { font-size: 1.8rem; color: var(--color-primary); margin-right: 1rem; margin-top: 5px; }
.map-details span { line-height: 1.5; color: var(--color-dark); opacity: 0.9; }
.map-details strong { color: var(--color-primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.map-btn { align-self: flex-start; }
.map-container { flex: 1 1 400px; min-height: 400px; position: relative; }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.1); }

/* Contact */
.contact-card { padding: 2.5rem; border-radius: 24px; text-align: center; }
.contact-card i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1rem; }
.social-link { display: inline-block; margin-top: 10px; color: var(--color-dark); text-decoration: none; font-weight: 600; }

/* WhatsApp */
.btn-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 20px rgba(37,211,102,0.4); z-index: 1000; animation: pulse 2s infinite; transition: transform 0.3s; text-decoration: none;}
.btn-whatsapp:hover { transform: scale(1.1) rotate(10deg); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 20px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }

/* Utils */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Parallax Cita */
.parallax-section { position: relative; background-image: url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?auto=format&fit=crop&q=80&w=1920'); background-attachment: fixed; background-size: cover; background-position: center; min-height: 50vh; display: flex; align-items: center; justify-content: center; }
.parallax-overlay { background: rgba(0,0,0,0.5); width: 100%; height: 100%; display: flex; align-items: center; padding: 4rem 0; }
.parallax-quote { font-family: 'Parisienne', cursive; font-size: clamp(2.5rem, 6vw, 4.5rem); color: white; margin-bottom: 1rem; font-weight: normal; line-height: 1.2; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.parallax-author { font-family: 'Outfit', sans-serif; font-size: 1.2rem; color: var(--color-light); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 80px; flex-direction: column; background: rgba(255,255,255,0.95); width: 100%; padding: 2rem 0; transition: 0.3s; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .map-wrapper { flex-direction: column; }
    .map-info { padding: 3rem 1.5rem; }
    .map-container { min-height: 350px; }
}
