/* ==========================================================
   IMPARABLES 360 - SISTEMA MAESTRO DE DESIGN SYSTEM (V2.0)
   Compatibilidad: Landings de Negocio, Seytú, Gummies y Bio
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Outfit:wght@500;700;900&display=swap');

:root {
    /* Paleta Corporativa Base */
    --omni-purple: #5C2B90;      
    --seytu-magenta: #E11281;    
    --brand-dark: #0F172A;        
    --brand-muted: #64748B;       
    --bg-page: #F8FAFC;          
    --bg-card: #FFFFFF;
    
    /* Variables Temáticas Dinámicas (Inyectables según campaña) */
    --theme-accent: #E11281;     /* Cambia según el embudo */
    --gradient-primary: linear-gradient(135deg, #5C2B90 0%, #3A1564 100%);
    --gradient-accent: linear-gradient(135deg, #E11281 0%, #FF3D9A 100%);
    
    /* Radios y Sombras Flotantes (Efecto Dribbble) */
    --radius-pill: 50px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 10px 30px -5px rgba(92, 43, 144, 0.08);
    --shadow-float: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    --shadow-hover: 0 20px 40px -10px rgba(225, 18, 129, 0.25);
}

/* Base Global */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--brand-dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.container-lg { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* 🚀 BOTONES PRO REUTILIZABLES */
.btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-pro.magenta { background: var(--gradient-accent); color: white; }
.btn-pro.purple { background: var(--gradient-primary); color: white; }
.btn-pro.dark { background: var(--brand-dark); color: white; }

.btn-pro:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.btn-pro i { margin-right: 10px; font-size: 18px; }

/* 🌟 HERO SECTIONS Y CARDS FLOTANTES */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
    align-items: center;
}
@media (min-width: 992px) { .hero-section { grid-template-columns: 1fr 1fr; } }

.hero-content h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--omni-purple); }
.hero-content p { font-size: 18px; color: var(--brand-muted); margin-bottom: 25px; }

/* Contenedor de Video Editorial */
.video-wrapper-modern {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: var(--bg-card);
}
.video-wrapper-modern iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* 📦 BENTO GRID / TARJETAS PRO (Para Pain Points, Soluciones o Gummies) */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }

.card-pro {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.card-pro:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
    border-color: var(--seytu-magenta);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(92, 43, 144, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--omni-purple);
}

.card-pro h3 { font-size: 20px; margin-bottom: 12px; color: var(--brand-dark); }
.card-pro p { color: var(--brand-muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* 💡 SOLUCIÓN INTELIGENTE / S-CARDS */
.solution-section { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .solution-section { grid-template-columns: 1fr 1fr; } }

.solution-cards { display: grid; gap: 15px; }
.s-card {
    background: var(--bg-card);
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 5px solid var(--seytu-magenta);
    text-align: left;
    transition: transform 0.2s ease;
}
.s-card:hover { transform: translateX(5px); }
.s-card h4 { font-size: 17px; margin: 0 0 6px 0; color: var(--omni-purple); }
.s-card p { font-size: 14px; margin: 0; color: var(--brand-muted); }

/* 📸 POLAROID & REDES SOCIALES */
.polaroid-wrapper { justify-self: center; text-align: center; }
.polaroid {
    background: white;
    padding: 15px 15px 25px 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-float);
    transform: rotate(2deg);
    transition: all 0.3s ease;
    width: 260px;
}
.polaroid:hover { transform: rotate(0deg) scale(1.03); }
.polaroid img { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; }
.polaroid h3 { color: var(--brand-dark); margin: 12px 0 4px; font-size: 20px; }
.polaroid p { color: var(--brand-muted); font-size: 13px; font-weight: 700; margin: 0; }

.social-row { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.social-row a {
    color: var(--omni-purple);
    font-size: 18px;
    background: var(--bg-page);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.social-row a:hover { background: var(--seytu-magenta); color: white; }

/* 📱 MODAL DE CAPTURA UIKIT (Limpieza y compatibilidad en Safari) */
.uk-modal-dialog-custom {
    border-radius: var(--radius-xl) !important;
    padding: 35px !important;
    box-shadow: var(--shadow-float) !important;
}

.lead-input-wrapper { position: relative; width: 100%; }
.lead-input-wrapper i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94A3B8; z-index: 10; }
.uk-input-custom { padding-left: 42px !important; border-radius: 12px !important; background: #F1F5F9 !important; border: 1px solid #E2E8F0; }

/* 🎛️ ADAPTACIONES TEMÁTICAS ESPECIALES */
/* Tema Gummies / Infantil (Inspirado en HIYA) */
body.theme-gummies {
    --omni-purple: #0EA5E9;       /* Azul brillante alegre */
    --seytu-magenta: #F59E0B;     /* Amarillo cálido */
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #10B981 100%);
    background-color: #FEFCE8;    /* Fondo crema muy suave */
}

/* Tema TeaParty / Limpiezas Faciales */
body.theme-teaparty {
    --omni-purple: #442A69;
    --seytu-magenta: #D63384;
    background-color: #FAF5FF;
}


/* ==========================================================
   ESTILOS DEDICADOS: TARJETA DE CONTACTO (LINK-IN-BIO)
   ========================================================== */

/* Contenedor Angosto Estilo Bio */
.wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: 30px 20px 60px 20px;
}

/* Header de Perfil */
.profile-card {
    text-align: center;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(92, 43, 144, 0.15);
}

.profile-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--omni-purple, #5C2B90);
    margin-bottom: 6px;
}

.profile-badge {
    display: inline-block;
    background: rgba(92, 43, 144, 0.08);
    color: var(--omni-purple, #5C2B90);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* Video de Presentación */
.video-wrapper-modern {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background: #ffffff;
    margin-bottom: 25px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.video-wrapper-modern iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Separador de Sección */
.section-divider {
    margin: 25px 0 12px 0;
    font-size: 11px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    padding-left: 4px;
}

/* Botón Lista Estilo Linktree Premium */
.btn-modern {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 12px;
    text-decoration: none !important;
    color: #1E2022;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(92, 43, 144, 0.12);
    border-color: var(--seytu-magenta, #E11281);
}

.btn-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(92, 43, 144, 0.08);
    color: var(--omni-purple, #5C2B90);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 14px;
    flex-shrink: 0;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.btn-title {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.btn-sub {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.btn-arrow {
    color: #CBD5E1;
    font-size: 13px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
    color: var(--seytu-magenta, #E11281);
}

/* Modal e Inputs */
.lead-input-wrapper { position: relative; width: 100%; }
.lead-input-wrapper i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94A3B8; z-index: 10; }
.uk-input-custom { padding-left: 42px !important; border-radius: 12px !important; background: #faf9fc !important; border: 1px solid #e2e8f0; height: 45px !important; }