/* ==========================================================================
   STYLE.CSS — RAMÉ CONTANDO CUENTOS
   Versión 2.0 — Mejorado Visual + Responsive + Accesibilidad
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Fredoka:wght@400;500;600;700&family=Patrick+Hand&display=swap');

:root {
    --primary:    #FF7E67;
    --primary-dark: #e86a53;
    --secondary:  #FFD166;
    --accent:     #6CC5D9;
    --text:       #3d3d3d;
    --text-light: #888;
    --bg-light:   #FFFBF7;
    --white:      #ffffff;
    --radius:     30px;
    --shadow-sm:  0 4px 15px rgba(0,0,0,0.06);
    --shadow-md:  0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg:  0 20px 50px rgba(0,0,0,0.12);
    --transition: 0.3s ease;

    /* Paleta pastel para tarjetas */
    --c-pink:   #ffafcc;
    --c-blue:   #a2d2ff;
    --c-yellow: #fcefb4;
    --c-lilac:  #cdb4db;
    --c-green:  #caffbf;
    --c-orange: #ffd6a5;
    --c-teal:   #9bf6ff;
    --c-red:    #ffadad;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-light);
    color: var(--text);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* =========================================
   1. HEADER & NAVEGACIÓN
   ========================================= */
header {
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease-in-out, box-shadow 0.3s;
}

header.header-oculto { transform: translateY(-100%); }

header.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.1); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 0 20px;
}

.nav-link {
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition), transform var(--transition);
    font-family: 'Patrick Hand', cursive;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.logo-center img {
    height: 130px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo-center img:hover { transform: rotate(-5deg) scale(1.15); }

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero-wrapper {
    position: relative;
    background: url('fondo.png') center/cover no-repeat;
    padding: 80px 20px 160px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.glass-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(31, 38, 135, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--text);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
}

/* Ola SVG divisor */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.custom-shape-divider-bottom svg {
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
    transform: rotate(180deg);
}

/* =========================================
   3. BOTONES
   ========================================= */
.btn-main, .btn-submit {
    background: var(--primary);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 126, 103, 0.35);
    font-family: inherit;
    letter-spacing: 0.3px;
}
.btn-submit { width: 100%; margin-top: 20px; font-size: 1.1rem; padding: 15px; }
.btn-main:hover, .btn-submit:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(255, 126, 103, 0.45);
}
.btn-main:active, .btn-submit:active { transform: translateY(-1px); }

/* =========================================
   4. TARJETAS DE PLANES
   ========================================= */
.plans-wrapper, .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}

.plan-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 15px solid #eee;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    opacity: 0;
    transition: opacity var(--transition);
}

.plan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.plan-card.pink   { border-top-color: var(--c-pink); }
.plan-card.blue   { border-top-color: var(--c-blue); }
.plan-card.yellow { border-top-color: var(--c-yellow); }
.plan-card.lilac  { border-top-color: var(--c-lilac); }
.plan-card.green  { border-top-color: var(--c-green); }
.plan-card.orange { border-top-color: var(--c-orange); }
.plan-card.teal   { border-top-color: var(--c-teal); }
.plan-card.red    { border-top-color: var(--c-red); }

.plan-card h3   { font-size: 1.8rem; margin: 10px 0; color: #444; }
.plan-price     { font-size: 2.5rem; font-weight: 800; color: var(--text); margin: 10px 0; }
.plan-card ul   { padding-left: 20px; margin: 20px 0; flex-grow: 1; list-style: disc; }
.plan-card li   { margin-bottom: 10px; color: #666; font-size: 1rem; }

.btn-plan {
    margin-top: auto;
    width: 100%;
    text-align: center;
    background: var(--text);
    color: white;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    display: block;
    font-size: 1rem;
}
.btn-plan:hover { transform: translateY(-2px); }
.plan-card.pink   .btn-plan:hover { background: var(--c-pink); }
.plan-card.blue   .btn-plan:hover { background: var(--c-blue); }
.plan-card.yellow .btn-plan:hover { background: #e8d800; color: #555; }
.plan-card.lilac  .btn-plan:hover { background: var(--c-lilac); }
.plan-card.green  .btn-plan:hover { background: #6dde62; color: #555; }
.plan-card.orange .btn-plan:hover { background: var(--c-orange); color: #555; }
.plan-card.teal   .btn-plan:hover { background: var(--c-teal); color: #555; }
.plan-card.red    .btn-plan:hover { background: var(--c-red); }

/* =========================================
   5. FORMULARIOS & INPUTS
   ========================================= */
.subscribe-section {
    background-color: var(--secondary);
    padding: 60px 20px;
    text-align: center;
    border-radius: 40px 40px 0 0;
    margin-top: 30px;
}

.subscribe-form {
    max-width: 800px;
    margin: 30px auto 0 auto;
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.form-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.phone-grid       { display: grid; grid-template-columns: 1fr 2fr; gap: 15px; }
.responsive-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-bottom: 15px; }
.grid-2-col       { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }

@media (max-width: 768px) {
    .subscribe-form { padding: 25px; }
    .form-grid, .phone-grid, .responsive-grid, .grid-2-col { grid-template-columns: 1fr !important; }
    .subscribe-section { padding: 40px 15px; }
}

.form-group label  { display: block; margin-bottom: 8px; font-weight: 700; color: var(--text); font-size: 0.9rem; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    background: #fdfdfd;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    color: var(--text);
}
.form-control:focus {
    border-color: var(--primary);
    background: #fff8f6;
    box-shadow: 0 0 0 4px rgba(255, 126, 103, 0.12);
}
.form-control::placeholder { color: #bbb; }

.input-prefix-group {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    height: 50px;
    transition: border-color var(--transition);
}
.input-prefix-group:focus-within { border-color: var(--primary); }
.prefix-box {
    background-color: #f5f5f5;
    color: #666;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-right: 1px solid #eee;
    font-size: 0.95rem;
}
.input-no-border {
    border: none;
    outline: none;
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    background: transparent;
    font-family: inherit;
    color: var(--text);
}

/* =========================================
   6. DASHBOARD ADMIN
   ========================================= */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: #f4f6f9;
}

.sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    flex-shrink: 0;
    overflow-y: auto;
    z-index: 900;
}

.sidebar-header      { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.sidebar-logo        { height: 60px; object-fit: contain; }
.sidebar-menu        { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; flex-grow: 1; }
.sidebar-btn         { display: flex; align-items: center; padding: 12px 16px; text-decoration: none; color: #666; border-radius: 14px; transition: background var(--transition), color var(--transition); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.sidebar-btn .icon   { margin-right: 12px; font-size: 1.3rem; min-width: 25px; text-align: center; }
.sidebar-btn:hover   { background-color: #fff3e0; color: var(--primary); }
.sidebar-btn.active  { background-color: var(--primary); color: white; box-shadow: 0 4px 12px rgba(255, 126, 103, 0.3); }
.sidebar-divider     { height: 1px; background: #eee; margin: 10px 0; }
.btn-logout          { margin-top: auto; color: #d32f2f; }
.btn-logout:hover    { background-color: #ffebee !important; color: #c62828 !important; }

.content-area  { flex-grow: 1; padding: 30px; width: 100%; overflow-x: hidden; }
.page-header   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.user-badge    { background: white; padding: 8px 16px; border-radius: 30px; border: 1px solid #eee; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; }

@media (max-width: 850px) {
    .dashboard-container { flex-direction: column; }
    .sidebar { width: 100%; height: auto; position: relative; flex-direction: row; padding: 10px; overflow-x: auto; border-right: none; border-bottom: 1px solid #ddd; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    .sidebar-header  { display: none; }
    .sidebar-menu    { flex-direction: row; gap: 8px; margin-bottom: 0; }
    .sidebar-btn     { padding: 8px 14px; font-size: 0.85rem; background: #f8f9fa; border: 1px solid #eee; display: inline-flex; }
    .sidebar-divider { display: none; }
    .btn-logout      { margin-top: 0; border: 1px solid #ffcdd2; color: #d32f2f; }
    .content-area    { padding: 15px; }
    .page-header     { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================
   7. TABLAS & UI ELEMENTS
   ========================================= */
.table-container {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table  { width: 100%; border-collapse: separate; border-spacing: 0 8px; min-width: 600px; }
th     { padding: 14px 16px; text-align: left; color: #999; font-weight: 700; white-space: nowrap; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
td     { padding: 14px 16px; background: white; border-top: 1px solid #f5f5f5; border-bottom: 1px solid #f5f5f5; vertical-align: middle; font-size: 0.95rem; }
td:first-child { border-radius: 12px 0 0 12px; border-left: 1px solid #f5f5f5; }
td:last-child  { border-radius: 0 12px 12px 0; border-right: 1px solid #f5f5f5; }
tr:hover td    { background: #fffcf5; }

.stats-grid, .kpi-grid, .charts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 30px; }
.chart-card, .kpi-card, .stat-card { width: 100%; }

.search-container-pro    { position: relative; width: 100%; max-width: 350px; }
.search-input-pro        { width: 100%; padding: 12px 20px 12px 45px; border: 2px solid #eee; border-radius: 50px; outline: none; font-size: 1rem; transition: var(--transition); font-family: inherit; }
.search-input-pro:focus  { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 126, 103, 0.1); }
.search-icon-pro         { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 1.1rem; }

.badge-status  { padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; white-space: nowrap; font-weight: 700; display: inline-block; }
.al-dia        { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.debe          { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.plan-pill     { background: #e3f2fd; color: #0d47a1; padding: 4px 10px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }

.btn-action     { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; font-size: 1rem; margin-right: 4px; cursor: pointer; border: none; transition: transform var(--transition), filter var(--transition); }
.btn-action:hover { transform: scale(1.1); filter: brightness(1.1); }
.btn-ws         { background: #25D366; color: white; }
.btn-edit       { background: var(--secondary); color: #444; }
.btn-del        { background: #ffebee; color: #c62828; }
.btn-icon-soft  { background: #f3f4f6; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: var(--transition); margin-right: 4px; font-size: 1.1rem; display: inline-flex; align-items: center; justify-content: center; }
.btn-icon-soft:hover { background: #e5e7eb; }

.color-dot { width: 18px; height: 18px; border-radius: 50%; display: inline-block; margin-right: 8px; border: 2px solid rgba(0,0,0,0.05); vertical-align: middle; }

/* Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); z-index: 2000; justify-content: center; align-items: center; backdrop-filter: blur(4px); padding: 20px; }
.modal-overlay.show { display: flex; }
.modal-box     { background: white; width: 100%; max-width: 560px; padding: 30px; border-radius: 24px; box-shadow: var(--shadow-lg); position: relative; max-height: 90vh; overflow-y: auto; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-modal   { position: absolute; top: 16px; right: 20px; font-size: 1.6rem; cursor: pointer; color: #bbb; line-height: 1; transition: color var(--transition), transform var(--transition); background: none; border: none; }
.close-modal:hover { color: var(--primary); transform: rotate(90deg); }

/* File Upload */
.file-upload-wrapper    { display: flex; align-items: center; gap: 12px; width: 100%; }
.input-file-hidden      { display: none; }
.btn-upload-custom      { background-color: var(--secondary); color: #444; padding: 10px 16px; border-radius: 10px; cursor: pointer; font-weight: 700; border: 2px solid transparent; transition: var(--transition); display: flex; align-items: center; gap: 6px; font-size: 0.9rem; white-space: nowrap; }
.btn-upload-custom:hover { transform: translateY(-2px); filter: brightness(1.05); }
.file-name-display      { font-size: 0.85rem; color: #888; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

/* =========================================
   8. MENÚ HAMBURGUESA
   ========================================= */
.menu-toggle, .close-menu, .menu-overlay, .mobile-logo { display: none; }
.desktop-logo { display: block; }

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
}

@media (max-width: 850px) {

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 8px 0;
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--primary);
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        line-height: 1;
        border-radius: 10px;
        transition: background var(--transition);
    }
    .menu-toggle:hover { background: rgba(255, 126, 103, 0.1); }

    .mobile-logo { display: block; }
    .mobile-logo img { height: 80px; }
    .desktop-logo { display: none; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px 30px;
        gap: 20px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
    }
    .nav-menu.open { left: 0; }

    .close-menu {
        display: block;
        position: absolute;
        top: 18px; right: 20px;
        font-size: 2.2rem;
        background: none;
        border: none;
        color: #ccc;
        cursor: pointer;
        line-height: 1;
        transition: color var(--transition), transform var(--transition);
        padding: 5px;
    }
    .close-menu:hover { color: var(--primary); transform: rotate(90deg); }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        backdrop-filter: blur(3px);
    }
    .menu-overlay.active { opacity: 1; visibility: visible; }
}

/* =========================================
   9. FOOTER
   ========================================= */
footer {
    background: #FFF0E6;
    padding: 50px 20px 30px 20px;
    text-align: center;
    margin-top: 0;
}

footer h3 { margin-bottom: 8px; font-size: 1.4rem; }
footer p  { color: #666; margin: 0 0 8px 0; }

/* =========================================
   10. UTILIDADES EXTRA
   ========================================= */

/* Contenedor genérico */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección instagram */
.ig-handle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    background: #FFF0E6;
    padding: 10px 25px;
    border-radius: 50px;
    word-break: break-word;
    transition: transform var(--transition);
}
.ig-handle:hover { transform: translateY(-2px); color: var(--primary-dark); }

/* Steps Section */
.steps-numbered-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.step-numbered-card  { background: white; padding: 40px 30px; border-radius: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.step-numbered-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-number-badge   { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2.2rem; font-weight: 800; margin-bottom: 25px; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.step-numbered-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.step-numbered-card p  { color: #666; font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* Package Grid */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.package-item { background: white; padding: 35px 25px; border-radius: 25px; box-shadow: var(--shadow-sm); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform var(--transition), box-shadow var(--transition); }
.package-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.package-icon { font-size: 3.5rem; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; width: 90px; height: 90px; border-radius: 50%; }
.package-item h3 { color: var(--text); font-size: 1.4rem; margin-bottom: 10px; }
.package-item p  { color: #666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Team cards */
.team-card { transition: transform var(--transition), box-shadow var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg) !important; }

/* Badge status helpers */
.tag-stock    { background: #ecfdf5; color: #059669; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; border: 1px solid #d1fae5; display: inline-block; }
.tag-agotado  { background: #fef2f2; color: #e11d48; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; border: 1px solid #ffe4e6; display: inline-block; }

/* Alert */
.alert-error   { background: #fff1f2; color: #e11d48; border: 1px solid #fda4af; padding: 14px 18px; border-radius: 14px; font-weight: 600; font-size: 0.92rem; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; padding: 14px 18px; border-radius: 14px; font-weight: 600; font-size: 0.92rem; }

/* Animación de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-in { animation: fadeInUp 0.6s ease both; }

/* Responsive misc */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p  { font-size: 1.1rem; }
    .glass-box { padding: 28px 20px; }
    .hero-wrapper { padding-top: 50px; min-height: auto; }
    .steps-numbered-grid { grid-template-columns: 1fr; }
}
