/* =========================================
   1. IMPORTACIÓN DE FUENTES & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* Paleta Premium */
    --color-primary: #2c3e50;    /* Gris azulado oscuro */
    --color-secondary: #c5a059;  /* Dorado Champagne */
    --color-text: #5a5a5a;       /* Gris medio */
    --color-bg: #ffffff;         /* Blanco puro */
    --color-light-gray: #f8f9fa; /* Gris casi blanco (Más limpio) */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transición suave experta */
    --shadow-soft: 0 20px 40px -15px rgba(44, 62, 80, 0.15); /* Sombra difusa de lujo */
}

/* =========================================
   2. BASES & ANIMACIÓN DE SCROLL
   ========================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden; /* Evita desplazamiento lateral indeseado */
    width: 100%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8; /* Lectura elegante */
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: -0.5px; /* Toque editorial */
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Animación de entrada */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   3. HEADER (GLASSMORPHISM / CRISTAL)
   ========================================= */
header {
    background-color: rgba(255, 255, 255, 0.92); /* Transparencia sutil */
    backdrop-filter: blur(12px); /* Efecto cristal desenfocado */
    -webkit-backdrop-filter: blur(12px); /* Soporte iOS */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.logo { display: flex; align-items: center; cursor: pointer; z-index: 1002; }
.logo img { height: 55px; width: auto; transition: var(--transition); }
.logo img:hover { opacity: 0.9; transform: scale(1.02); }

nav ul { display: flex; list-style: none; gap: 2.5rem; }
nav ul li a { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700; 
    color: var(--color-primary);
    position: relative;
}

/* Subrayado animado */
nav ul li a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 1px;
    background-color: var(--color-secondary); transition: width 0.3s ease;
}
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: var(--color-secondary); }

.menu-toggle { display: none; cursor: pointer; z-index: 1002; }
.bar { width: 25px; height: 2px; background-color: var(--color-primary); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* =========================================
   4. HERO (PORTADA)
   ========================================= */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(44,62,80,0.35), rgba(44,62,80,0.2)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    width: 100%;
}

.hero h1 {
    font-size: 4.5rem; color: #ffffff; margin-bottom: 1rem; 
    font-style: italic; text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero p { 
    font-size: 1.3rem; font-weight: 300; max-width: 600px; margin-bottom: 3rem; 
    letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); 
}

.btn-premium {
    padding: 15px 40px; background-color: var(--color-secondary); color: #fff;
    font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 700;
    border: none; cursor: pointer; display: inline-block; transition: var(--transition);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}
.btn-premium:hover { background-color: #b08d4b; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4); }

/* =========================================
   5. SECCIONES INTERNAS
   ========================================= */
.quote-section { padding: 130px 20px; text-align: center; background-color: #fff; }
.quote-section h2 { font-size: 3.2rem; color: #444; max-width: 900px; margin: 0 auto; line-height: 1.2; font-style: italic; }

.split-section { display: flex; flex-wrap: wrap; align-items: stretch; }
.split-image { flex: 1; min-height: 600px; background-size: cover; background-position: center; min-width: 400px; background-attachment: fixed; }
.split-content { flex: 1; padding: 100px 80px; background-color: #fff; display: flex; flex-direction: column; justify-content: center; min-width: 400px; }
.split-section.reverse { flex-direction: row-reverse; }
.split-section.reverse .split-content { background-color: var(--color-light-gray); }

.split-content h2 { font-size: 3rem; margin-bottom: 25px; color: var(--color-primary); }
.separator-line { width: 60px; height: 3px; background-color: var(--color-secondary); margin-bottom: 40px; }
.split-content p { font-size: 1.1rem; color: var(--color-text); margin-bottom: 40px; text-align: justify; opacity: 0.9; }

/* =========================================
   6. SERVICIOS
   ========================================= */
.services-section { padding: 120px 5%; background-color: #fcfcfc; text-align: center; }
.services-header { margin-bottom: 70px; max-width: 700px; margin-left: auto; margin-right: auto; }
.services-header h2 { font-size: 3rem; color: var(--color-primary); margin-bottom: 15px; }
.services-header p { font-size: 1.1rem; color: #777; font-weight: 300; }

.service-card {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-soft); /* Sombra experta */
    transition: var(--transition);
    text-align: left; height: 100%; display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -10px rgba(44, 62, 80, 0.2); }

.card-image { height: 260px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.service-card:hover .card-image { background-size: 110%; transition: background-size 0.8s ease; } /* Zoom sutil */

.card-content { padding: 35px 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.6rem; color: var(--color-primary); margin-bottom: 12px; font-family: var(--font-heading); }
.card-content p { font-size: 0.95rem; color: #666; line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }
.card-link { color: var(--color-secondary); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.card-link:hover { color: var(--color-primary); gap: 12px; }

/* =========================================
   7. INSTAGRAM
   ========================================= */
.instagram-section { padding: 100px 20px; text-align: center; background-color: #fff; }
.insta-header { margin-bottom: 50px; }
.insta-label { color: var(--color-secondary); font-size: 0.85rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.insta-title { font-size: 2.5rem; color: #333; font-family: var(--font-heading); }

.insta-item { width: 100%; height: 320px; background-size: cover; background-position: center; transition: transform 0.6s ease; border-radius: 6px; }
.insta-link { display: block; overflow: hidden; border-radius: 6px; }
.insta-link:hover .insta-item { transform: scale(1.08); filter: brightness(0.9); }

.insta-actions { margin-top: 60px; display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-gold-solid { background-color: #c5a059; color: #fff; padding: 16px 40px; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; border: none; cursor: pointer; border-radius: 4px; transition: var(--transition); }
.btn-instagram { background: transparent; border: 1px solid #333; color: #333; padding: 16px 40px; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; border-radius: 4px; transition: var(--transition); }
.btn-instagram:hover { background-color: #333; color: #fff; transform: translateY(-3px); }
.btn-gold-solid:hover { background-color: #b08d4b; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); }

/* =========================================
   8. FORMULARIO CONTACTO
   ========================================= */
.contact-section { padding: 100px 20px; background-color: #fff; text-align: center; }
.contact-container { max-width: 900px; margin: 0 auto; }
.contact-header h2 { font-size: 3rem; margin-bottom: 10px; color: var(--color-primary); }
.contact-header p { color: #666; margin-bottom: 40px; font-size: 1.1rem; }

.form-card-container {
    background: #ffffff; padding: 50px; border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    border-top: 4px solid var(--color-secondary);
    text-align: left; margin-bottom: 60px;
}

.luxury-form { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.form-group { margin-bottom: 10px; }
.form-group.full-width { grid-column: span 2; }

.form-group label {
    display: block; font-size: 0.8rem; font-weight: 800; color: var(--color-primary);
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
}

.form-input {
    width: 100%; padding: 14px 18px; border: 1px solid #e0e0e0; border-radius: 6px;
    background: #fafafa; font-family: var(--font-body); font-size: 1rem; color: #333;
    transition: all 0.3s ease; outline: none;
}
.form-input:focus { border-color: var(--color-secondary); background: #fff; box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1); }

.btn-submit {
    grid-column: span 2; margin-top: 15px; background-color: var(--color-primary); color: #fff;
    border: none; padding: 20px 40px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: var(--transition); font-family: var(--font-body); font-weight: 800;
    width: 100%; border-radius: 6px; box-shadow: 0 10px 20px rgba(44, 62, 80, 0.2);
}
.btn-submit:hover { background-color: var(--color-secondary); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3); }

.expert-map { width: 100%; height: 450px; border: none; filter: grayscale(100%); transition: filter 0.6s ease; border-radius: 8px; box-shadow: var(--shadow-soft); }
.expert-map:hover { filter: grayscale(0%); }

/* =========================================
   9. FOOTER (DORADO)
   ========================================= */
footer {
    background-color: var(--color-secondary) !important;
    color: #ffffff;
    padding: 90px 5% 30px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
}

.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 40px; position: relative; z-index: 2; }
.footer-social { display: flex; gap: 15px; }
.social-icon { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.6) !important; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; background: transparent; transition: var(--transition); }
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }
.social-icon:hover { background-color: #fff; color: var(--color-secondary); border-color: #fff !important; transform: translateY(-3px); }

.footer-info { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; gap: 40px; position: relative; z-index: 2; }
.info-item { flex: 0 1 auto; min-width: 250px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.info-icon { color: #fff; margin-bottom: 15px; background: rgba(255,255,255,0.25); padding: 12px; border-radius: 50%; backdrop-filter: blur(5px); }
.info-text p { color: #fff; font-size: 1.1rem; margin-bottom: 5px; font-weight: 400; text-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.info-text a { color: #fff; text-decoration: none; font-weight: 700; }
.info-text a:hover { text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.4); padding-top: 30px; text-align: center; font-size: 0.9rem; color: #fff; opacity: 0.9; position: relative; z-index: 2; }
.footer-bottom a { color: #fff; opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; text-decoration: underline; }

/* =========================================
   10. WIDGETS
   ========================================= */
.btn-whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background-color: #25d366; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); z-index: 9999; cursor: pointer; transition: all 0.3s ease; }
.btn-whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }
.btn-whatsapp-float svg { width: 38px; height: 38px; fill: currentColor; }
.whatsapp-box { position: fixed; bottom: 100px; right: 30px; width: 300px; background-color: #fff; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); z-index: 9998; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
.whatsapp-box.active { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-header { background-color: #25d366; padding: 20px; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.wa-header h4 { color: #fff; font-size: 1.1rem; margin: 0; display: flex; align-items: center; gap: 8px; }
.wa-close { cursor: pointer; font-size: 1.2rem; }
.wa-body { padding: 20px; background-color: #f9f9f9; }
.wa-message { background-color: #fff; padding: 15px; border-radius: 0 15px 15px 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-size: 0.95rem; color: #555; margin-bottom: 20px; position: relative; }
.wa-message::before { content: ''; position: absolute; top: 0; left: -10px; width: 0; height: 0; border-top: 15px solid #fff; border-left: 15px solid transparent; }
.btn-wa-action { display: flex; justify-content: center; align-items: center; gap: 10px; background-color: #25d366; color: #fff; padding: 12px; border-radius: 30px; text-align: center; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; transition: var(--transition); }
.btn-wa-action:hover { background-color: #128c7e; transform: translateY(-2px); }

.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease; }
.preloader-content img { width: 120px; height: auto; animation: fadePulse 2s infinite; }
@keyframes fadePulse { 0%, 100% { opacity: 0.6; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.05); } }

.modal-overlay { display: none; position: fixed; z-index: 20000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.show { display: flex; opacity: 1; }
.modal-content { background-color: #fff; width: 90%; max-width: 600px; max-height: 80vh; padding: 40px; border-radius: 8px; position: relative; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.3); animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 30px; font-weight: bold; color: #999; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--color-primary); }
.modal-content h3 { font-family: var(--font-heading); color: var(--color-primary); margin-bottom: 20px; font-size: 2rem; text-align: center; border-bottom: 2px solid var(--color-secondary); padding-bottom: 15px; display: inline-block; width: 100%; }
.modal-body h4 { color: var(--color-primary); font-size: 1.1rem; margin-top: 20px; margin-bottom: 10px; }
.modal-body p, .modal-body ul { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 10px; text-align: justify; }
.modal-body ul { padding-left: 20px; }
.last-update { margin-top: 30px; font-size: 0.8rem; color: #aaa; text-align: right; font-style: italic; }

@keyframes slideUpFade { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
.fade-in-section .premium-card { opacity: 0; }
.fade-in-section.visible .premium-card { animation: slideUpFade 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.fade-in-section.visible .premium-card:nth-child(1) { animation-delay: 0.1s; }
.fade-in-section.visible .premium-card:nth-child(2) { animation-delay: 0.3s; }
.fade-in-section.visible .premium-card:nth-child(3) { animation-delay: 0.5s; }

/* CALENDARIO PREMIUM (BASE) */
#calendar { max-width: 1000px; margin: 0 auto; background: white; padding: 35px; border-radius: 12px; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.03); font-family: 'Lato', sans-serif; transform: translateY(20px); opacity: 0; transition: all 0.8s ease; }
.fade-in-section.visible #calendar { transform: translateY(0); opacity: 1; }
.fc-toolbar-title { font-family: 'Playfair Display', serif !important; color: var(--color-primary); font-size: 1.8rem !important; text-transform: capitalize; }
.fc-button-primary { background-color: transparent !important; border: 1px solid #eee !important; color: var(--color-primary) !important; box-shadow: none !important; border-radius: 50% !important; width: 40px; height: 40px; padding: 0 !important; display: flex; align-items: center; justify-content: center; transition: 0.3s all ease; }
.fc-button-primary:hover { background-color: var(--color-primary) !important; color: white !important; border-color: var(--color-primary) !important; transform: scale(1.1); }
.fc-button-primary:focus { box-shadow: none !important; }
.fc-icon { font-size: 1rem; }
.fc-col-header-cell-cushion { color: var(--color-secondary); text-transform: uppercase; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; padding-bottom: 10px !important; text-decoration: none !important; }
.fc-daygrid-day-number { color: #777; font-weight: 400; font-size: 0.9rem; padding: 8px !important; text-decoration: none !important; }
.fc-theme-standard td, .fc-theme-standard th { border-color: #f4f4f4 !important; }
.fc-day-today { background-color: rgba(197, 160, 89, 0.05) !important; }
.fc-event { border: none !important; box-shadow: none !important; }
.fc-daygrid-event-dot { border-color: transparent !important; }
.calendar-legend { display: flex; justify-content: center; gap: 20px; margin-top: 25px; font-size: 0.85rem; color: #666; font-family: var(--font-body); }
.legend-item { display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background-color: #ff7675; } 
.dot.gold { background-color: rgba(197, 160, 89, 0.3); }

/* =========================================
   13. RESPONSIVE OPTIMIZADO (IPHONE/ANDROID)
   ========================================= */
@media (max-width: 1024px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    /* --- MENÚ MÓVIL "GLASS" --- */
    nav { 
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
        background-color: rgba(255,255,255,0.98); 
        backdrop-filter: blur(10px); /* Efecto en menú abierto */
        display: flex; justify-content: center; align-items: center; 
        transform: translateY(-100%); transition: transform 0.4s ease-in-out; z-index: 1001; 
    }
    nav.active { transform: translateY(0); }
    nav ul { flex-direction: column; gap: 35px; text-align: center; }
    nav ul li a { font-size: 1.6rem; color: var(--color-primary); font-weight: 300; }

    /* Animación Hamburguesa */
    .menu-toggle.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    /* Ajustes Generales Móvil */
    .hero { background-attachment: scroll; height: 85vh; min-height: 500px; }
    .hero h1 { font-size: 2.8rem; padding: 0 10px; }
    
    /* CORRECCIÓN CRÍTICA IMÁGENES SPLIT IPHONE */
    .split-section, .split-section.reverse { flex-direction: column; height: auto; }
    .split-image {
        width: 100%; height: 350px !important; min-height: 350px !important;
        background-attachment: scroll !important; /* Desactiva fixed que rompe iOS */
        background-position: center center !important;
        background-size: cover !important; object-fit: cover;
    }
    .split-content { padding: 60px 25px !important; width: 100%; }
    .split-content h2 { font-size: 2.2rem; }

    .footer-top { flex-direction: column; gap: 30px; text-align: center; }
    .footer-info { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    
    .services-header h2 { font-size: 2.2rem; }
    
    .expert-map { height: 320px; margin-top: 40px; }

    /* --- CORRECCIÓN CALENDARIO MÓVIL (Compacto) --- */
    #calendar { padding: 10px !important; max-width: 100%; overflow: hidden; }
    .fc-header-toolbar { flex-direction: column; gap: 10px; margin-bottom: 15px !important; }
    .fc-toolbar-title { font-size: 1.3rem !important; }
    .fc-button { font-size: 0.8rem !important; padding: 5px 10px !important; width: auto !important; height: auto !important; }
    .fc-col-header-cell-cushion { font-size: 0.75rem !important; padding: 5px 0 !important; }
    .fc-daygrid-day-number { font-size: 0.8rem !important; padding: 2px !important; }
    .fc-daygrid-day-frame { min-height: 40px !important; }

    /* --- CORRECCIÓN CRÍTICA FORMULARIO IPHONE --- */
    .luxury-form { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 25px !important; 
    }
    .form-group { margin-bottom: 0 !important; width: 100% !important; }
    .form-group label { margin-bottom: 8px !important; font-size: 0.9rem !important; }
    .form-input, select { height: 50px !important; font-size: 16px !important; /* Anti-zoom iOS */ }
    .form-card-container { padding: 35px 20px !important; }
}

@media (max-width: 600px) {
    .insta-actions { flex-direction: column; width: 100%; }
    .btn-gold-solid, .btn-instagram { width: 100%; }
}

/* --- ESTILOS PARA ESTADO CONFIRMADO --- */
.badge-confirmado {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
}