
/* Estilo general */
body {
    font-family: 'Libre Baskerville', 'Georgia', serif;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    background-attachment: fixed;
    color: #8b7d7d;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* CAMPOS DE TEXTO MÁS GRANDES - GLOBAL */
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    font-size: 1.3rem !important;
    padding: 1.2rem !important;
    line-height: 1.6 !important;
}

textarea {
    min-height: 150px !important;
}

/* Botón flotante para menú */
.btn-menu-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.btn-menu-flotante:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(244, 197, 66, 0.7);
}

.btn-menu-flotante:active {
    transform: scale(0.95);
}

/* Navegación Principal */
.main-nav {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(255, 212, 229, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Ocultar navegación en modo full-screen */
.main-nav.oculto {
    display: none !important;
}

header.oculto {
    display: none !important;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #6b3f3f;
    border: 2px solid rgba(107, 63, 63, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    color: #8b5a5a;
    border-color: #8b5a5a;
    transform: translateY(-2px);
}

.nav-btn.active {
    background: white;
    color: #6b3f3f;
    border-color: #6b3f3f;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
}

/* Secciones de Amor Propio y Empoderamiento */
.afirmaciones-section, .reflexiones-section, .victorias-section, 
.desafios-section, .ejercicios-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.afirmaciones-section h3, .reflexiones-section h3, .victorias-section h3,
.desafios-section h3, .ejercicios-section h3 {
    color: #8b5a5a;
    text-align: center;
    margin-bottom: 1rem;
}

.afirmaciones-descripcion {
    text-align: center;
    color: #999;
    margin-bottom: 1.5rem;
}

.categoria-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

/* Pestañas de Categorías */
.tab-afirmacion {
    background: #a67878;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.3rem;
}

.tab-afirmacion:hover {
    background: #8b5a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(166, 120, 120, 0.5);
}

.tab-afirmacion.active {
    background: #f4c542;
    color: white;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.5);
}

.afirmaciones-container {
    background: linear-gradient(135deg, #ffe9f3 0%, #fff5f8 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.afirmacion-texto {
    font-size: 1.3rem;
    color: #8b5a5a;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn-siguiente-afirmacion {
    background: #f4c542;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-siguiente-afirmacion:hover {
    background: #d4a76a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(244, 197, 66, 0.4);
}

.reflexion-card {
    background: #faf5f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
}

@media (min-width: 768px) {
    .reflexion-card {
        max-width: 90%;
    }
}

.ejercicio-card, .ejercicio-valoracion {
    background: #faf5f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
}

@media (min-width: 768px) {
    .ejercicio-card, .ejercicio-valoracion {
        max-width: 90%;
    }
}

.reflexion-card h4 {
    color: #8b5a5a;
    margin-bottom: 1rem;
}

.reflexion-card textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #ffe9f3;
    border-radius: 10px;
    font-size: 1.3rem;
    resize: vertical;
    margin-bottom: 1rem;
    min-height: 180px;
    line-height: 1.6;
}

.btn-guardar-reflexion {
    background: #a67878;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-guardar-reflexion:hover {
    background: #8b5a5a;
    transform: translateY(-2px);
}

.afirmacion-personalizada {
    background: #faf5f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.afirmacion-personalizada h4 {
    color: #8b5a5a;
    margin-bottom: 1rem;
    text-align: center;
}

.afirmacion-personalizada textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #ffe9f3;
    border-radius: 10px;
    font-size: 1.3rem;
    resize: vertical;
    margin-bottom: 1rem;
    min-height: 200px;
    line-height: 1.6;
}

/* Portada Principal */
.portada-principal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.portada-imagen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    will-change: opacity;
}

.portada-imagen.activa {
    opacity: 1;
    z-index: 1;
}

.portada-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 212, 229, 0.05) 0%, rgba(255, 233, 243, 0.05) 100%);
    z-index: 1;
}

.portada-contenido {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Botón Entrar en Portada */
.btn-entrar-app {
    background: linear-gradient(135deg, #f4c542 0%, #f0b429 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(244, 197, 66, 0.8);
        transform: scale(1.05);
    }
}

.btn-reset-total {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-reset-total:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .btn-entrar-app {
        padding: 1rem 2.5rem;
        font-size: 1.3rem;
        max-width: 280px;
    }
    
    .btn-reset-total {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        max-width: 220px;
    }
}

/* Sección Menú de Categorías */
.menu-categorias-section {
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-categorias-subtitulo-unico {
    font-size: 1rem;
    color: #a67878;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-weight: normal;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 500px) {
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.categoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.categoria-card {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
    height: 0;
    padding-bottom: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.categoria-item:active .categoria-card::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.categoria-item:hover .categoria-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(244, 197, 66, 0.5), 0 0 30px rgba(244, 197, 66, 0.3);
    border-color: #f4c542;
}

.categoria-item:active .categoria-card {
    transform: scale(0.98);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6), 0 0 50px rgba(255, 215, 0, 0.5);
}

.categoria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 212, 229, 0.08) 100%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.categoria-item:hover .categoria-overlay {
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.25) 0%, rgba(255, 215, 0, 0.35) 100%);
}

.categoria-item:active .categoria-overlay {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0%, rgba(244, 197, 66, 0.4) 100%);
}

.categoria-nombre {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6b3f3f;
    text-align: center;
    margin: 0;
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #6b3f3f;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    letter-spacing: 0.5px;
}

.categoria-premium {
    position: relative;
}

.categoria-premium::after {
    content: '💎';
    position: absolute;
    font-size: 3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.categoria-descripcion {
    font-size: 1rem;
    color: #999;
}

.btn-volver-inicio {
    background: rgba(255, 255, 255, 0.9);
    color: #8b5a5a;
    border: 2px solid #8b5a5a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.btn-volver-inicio:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 90, 0.2);
}

/* Mini Calendario de Hábitos en el Menú */
.mini-calendario-menu {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 1rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #f4c542;
}

.mini-calendario-header {
    text-align: center;
    margin-bottom: 1rem;
}

.mini-calendario-mes {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b5a5a;
}

.mini-calendario-dias-container {
    overflow: hidden;
    height: 120px;
}

.mini-calendario-dias {
    display: flex;
    gap: 0.8rem;
    animation: scrollDias 20s linear infinite;
    padding: 0.5rem 0;
}

.mini-dia {
    min-width: 80px;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mini-dia:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(244, 197, 66, 0.3);
}

.mini-dia-numero {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5a5a;
    margin-bottom: 0.3rem;
}

.mini-dia-nombre {
    font-size: 0.75rem;
    color: #a67878;
    margin-bottom: 0.5rem;
}

.mini-dia-habitos {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.2rem;
}

@keyframes scrollDias {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación al hover */
.mini-calendario-dias:hover {
    animation-play-state: paused;
}

.portada-logo {
    margin-top: 5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in;
}

.logo-aurora-grande {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 8px 20px rgba(255, 192, 217, 0.4));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.titulo-aurora-grande {
    font-size: 4.5rem !important;
    color: #3a1010 !important;
    margin: 1.5rem 0 !important;
    font-weight: 900 !important;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(58, 16, 16, 0.6);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.subtitulo-aurora {
    font-size: 2.5rem !important;
    color: #4a1f1f !important;
    margin-bottom: 3.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.frase-portada-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 233, 243, 0.6) 0%, rgba(255, 245, 248, 0.6) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 192, 217, 0.3);
    animation: fadeIn 2.5s ease-in;
}

.frase-portada {
    font-size: 2.5rem !important;
    color: #3a1010 !important;
    font-weight: 800 !important;
    line-height: 1.9;
    font-style: italic;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(58, 16, 16, 0.5);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .portada-principal {
        padding: 1rem;
    }
    
    .portada-logo {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .logo-aurora-grande {
        width: 100px;
        height: 100px;
    }
    
    .titulo-aurora-grande {
        font-size: 1.8rem !important;
        color: #3a1010 !important;
        margin: 0.3rem 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .subtitulo-aurora {
        font-size: 1.2rem !important;
        color: #4a1f1f !important;
        margin-bottom: 0.3rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .frase-portada-container {
        padding: 0.6rem 1rem;
        margin: 0 0.5rem;
    }
    
    .frase-portada {
        font-size: 1.1rem !important;
        color: #3a1010 !important;
        line-height: 1.4;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .btn-entrar-app {
        margin-top: 1rem;
    }
}

.btn-guardar-afirmacion {
    background: #f4c542;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn-guardar-afirmacion:hover {
    background: #d4a76a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(244, 197, 66, 0.4);
}

/* Secciones */
.seccion {
    display: none;
}

.seccion.activa {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Encabezado */
header {
    background: #faf5f0;
    padding: 1rem;
    text-align: center;
    color: #8b7d7d;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(139, 125, 125, 0.1);
    position: relative;
}

/* Sección principal */
main {
    padding: 2rem 0.5rem;
}

@media (min-width: 768px) {
    main {
        padding: 2rem 1rem;
    }
}

@media (min-width: 1024px) {
    main {
        padding: 2rem;
    }
}

/* Mensaje de bienvenida - ESTILOS BASE */
.bienvenida {
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(255, 212, 229, 0.75) 0%, rgba(255, 179, 209, 0.7) 100%),
        url('../attached_assets/stock_images/beautiful_flower_fie_58314a15.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
}

/* ===== FONDOS DIFERENTES PARA CADA SECCIÓN ===== */

/* 💪 Empoderamiento - Mujer Elegante Desayunando (Elegancia y Poder) */
#seccion-empoderamiento .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 200, 220, 0.25) 0%, rgba(255, 220, 240, 0.20) 100%),
        url('/attached_assets/stock_images/elegant_woman_breakf_bbd56d05.jpg');
    background-size: cover;
    background-position: center;
}

#seccion-empoderamiento .bienvenida::before {
    animation: fondoZoom 20s ease-in-out infinite;
}

/* 🎴 Cartas de Poder - Santorini Atardecer Rosa (Belleza y Magia) */
#seccion-cartas-poder .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 180, 200, 0.20) 0%, rgba(255, 200, 220, 0.15) 100%),
        url('/attached_assets/stock_images/santorini_greece_sun_1b1ee4a5.jpg');
    background-size: cover;
    background-position: center;
}

#seccion-cartas-poder .bienvenida::before {
    animation: fondoPan 25s ease-in-out infinite;
}

/* 💫 Afirmaciones - París Vista Romántica (Elegancia) */
#seccion-afirmaciones .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 200, 220, 0.25) 0%, rgba(255, 220, 240, 0.20) 100%),
        url('/attached_assets/stock_images/paris_balcony_breakf_453c9bed.jpg');
    background-size: cover;
    background-position: center;
}

#seccion-afirmaciones .bienvenida::before {
    animation: fondoDiagonal 22s ease-in-out infinite;
}

/* 💗 Amor Propio - Santorini Casas Blancas (Paz y Serenidad) */
#seccion-amor-propio .bienvenida {
    background: 
        linear-gradient(135deg, rgba(200, 220, 255, 0.20) 0%, rgba(255, 200, 220, 0.20) 100%),
        url('/attached_assets/stock_images/santorini_greece_sun_2b5a1965.jpg');
    background-size: cover;
    background-position: center;
}

#seccion-amor-propio .bienvenida::before {
    animation: fondoRespiracion 18s ease-in-out infinite;
}

/* 🌟 Autoestima - Italia Positano Balcón (Cultura y Refinamiento) */
#seccion-autoestima .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 220, 200, 0.20) 0%, rgba(255, 200, 180, 0.20) 100%),
        url('/attached_assets/stock_images/italy_positano_balco_0a3e6668.jpg');
    background-size: cover;
    background-position: center;
}

#seccion-autoestima .bienvenida::before {
    animation: fondoZoom 23s ease-in-out infinite;
}

/* 📈 Crecimiento - Mujer en París de Vacaciones (Inspiración para Metas) */
#seccion-crecimiento .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 200, 220, 0.35) 0%, rgba(255, 220, 240, 0.3) 100%),
        url('/attached_assets/stock_images/woman_paris_vacation_c026b54f.jpg');
}

#seccion-crecimiento .bienvenida::before {
    animation: fondoZoom 24s ease-in-out infinite;
}

/* 📊 Mi Progreso - Pétalos Rosados */
#seccion-progreso .bienvenida {
    background: 
        linear-gradient(135deg, rgba(255, 200, 220, 0.4) 0%, rgba(255, 180, 200, 0.35) 100%),
        url('../attached_assets/stock_images/pink_petals_falling__aa85f415.jpg');
}

#seccion-progreso .bienvenida::before {
    animation: fondoDiagonal 21s ease-in-out infinite;
}

.bienvenida::before {
    content: '🌸';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: flotar 3s ease-in-out infinite;
}

.bienvenida::after {
    content: '🌺';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: flotar 3s ease-in-out infinite 1.5s;
}

.bienvenida h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.bienvenida p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Sección de Registro */
.registro-usuario-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Formulario de entrada */
form {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 auto 2rem;
    max-width: 500px;
}

form h2, form h3 {
    text-align: center;
    color: #f4c542;
    margin-bottom: 1.5rem;
}

form input, form textarea, form button {
    width: 100%;
    padding: 1.2rem;
    margin-top: 0.8rem;
    border: 2px solid #ffe9f3;
    border-radius: 8px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: #f4c542;
    box-shadow: 0 0 10px rgba(201, 165, 154, 0.3);
}

form button {
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 165, 154, 0.4);
}

form label {
    color: #f4c542;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    display: block;
}

.boton-dorado {
    display: inline-block;
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    border: 2px solid #ffd700;
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.4);
    transition: all 0.3s ease;
}

.boton-dorado:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 165, 154, 0.6);
    background: linear-gradient(135deg, #d4a5a5 0%, #f4c542 100%);
}

/* Sección del calendario */
#calendarSection {
    background: linear-gradient(135deg, #f5f0ff 0%, #fff5f8 100%);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(139, 123, 168, 0.15);
    margin-top: 2rem;
}

#calendarSection h2 {
    text-align: center;
    color: #8b7ba8;
    margin-bottom: 1rem;
}

#calendar h3 {
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
}

.frase-inspiradora-semanal {
    text-align: center;
    font-style: italic;
    color: #9d89b8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(157, 137, 184, 0.1);
    border-radius: 8px;
    border-left: 4px solid #9d89b8;
}

/* Grid del calendario */
.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffacd;
    border: 2px solid #ffd89b;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.day:hover {
    background: #ffeead;
    color: #333;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 215, 155, 0.4);
}

/* Notas del calendario */
#notes {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fffef0;
    border-radius: 8px;
    min-height: 100px;
}

#notes div {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: white;
    border-left: 4px solid #f4c542;
    border-radius: 4px;
}

/* Página del diario */
.diario-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.diario-page h1 {
    text-align: center;
    color: #f4c542;
    margin-bottom: 2rem;
}

#preview {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

#preview h2 {
    color: #f4c542;
    margin-bottom: 1rem;
}

.volver-btn {
    display: inline-block;
    margin-top: 2rem;
    color: #f4c542;
    text-decoration: none;
    font-weight: bold;
}

.volver-btn:hover {
    text-decoration: underline;
}

/* Frase Motivadora */
.frase-motivadora {
    background: linear-gradient(135deg, #fff 0%, #ffe4e4 100%);
    border: 3px solid #ffe9f3;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.2);
}

.frase-motivadora h3 {
    color: #f4c542;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.frase-texto {
    font-size: 1.3rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin: 1.5rem 0;
    min-height: 60px;
}

.btn-cambiar-frase {
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cambiar-frase:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 165, 154, 0.4);
}

/* Sección de Música */
.musica-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.musica-section h3 {
    color: #f4c542;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.playlist {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-musica {
    background: linear-gradient(135deg, #ffe9f3 0%, #f4c542 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-musica:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 165, 154, 0.3);
    background: linear-gradient(135deg, #d4a5a5 0%, #c71585 100%);
}

/* Música Personalizada */
.musica-personalizada {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
    border-radius: 12px;
    border: 2px solid #ffe9f3;
}

.info-musica {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.input-link-musica {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ffe9f3;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    box-sizing: border-box;
}

.input-link-musica:focus {
    outline: none;
    border-color: #f4c542;
    box-shadow: 0 0 10px rgba(201, 165, 154, 0.3);
}

.btn-agregar-musica {
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-agregar-musica:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.mis-canciones-lista {
    margin-top: 1rem;
}

.cancion-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.btn-cancion-personal {
    flex: 1;
    background: linear-gradient(135deg, #ffe9f3 0%, #f4c542 100%);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.btn-cancion-personal:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(201, 165, 154, 0.3);
}

.btn-eliminar-cancion {
    background: #ff4444;
    color: white;
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-eliminar-cancion:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Modal de Hábitos */
.modal-habitos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content-habitos {
    background: linear-gradient(135deg, #fff 0%, #fff0f5 100%);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(201, 165, 154, 0.3);
    border: 3px solid #ffe9f3;
}

.modal-content-habitos h3 {
    color: #f4c542;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.habitos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.habito-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #ffe9f3;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.habito-item:hover {
    background: #fff0f5;
    transform: scale(1.02);
}

.habito-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.habito-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.modal-botones {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-guardar, .btn-cerrar {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-guardar {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-guardar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.btn-cerrar {
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
}

.btn-cerrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 165, 154, 0.4);
}

/* Gestión de Hábitos Personalizados */
.gestion-habitos {
    background: linear-gradient(135deg, #f0f8ff 0%, #faf0fa 100%);
    border: 2px solid #d4c5e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gestion-habitos h2 {
    color: #8b7ba8;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.crear-habito-box {
    display: flex;
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.crear-habito-box input {
    padding: 0.8rem;
    border: 2px solid #d4c5e0;
    border-radius: 8px;
    font-size: 1rem;
}

#nuevo-habito-nombre {
    flex: 1;
    min-width: 200px;
}

#nuevo-habito-emoji {
    width: 80px;
}

.btn-agregar-habito {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-agregar-habito:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.lista-habitos-personalizados {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.no-habitos {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 1rem;
}

.habito-card {
    background: white;
    border: 2px solid #d4c5e0;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.habito-card:hover {
    box-shadow: 0 4px 12px rgba(139, 123, 168, 0.25);
    transform: translateY(-2px);
}

.habito-emoji {
    font-size: 1.8rem;
}

.habito-nombre {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.btn-borrar-habito {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-borrar-habito:hover {
    background: #c82333;
    transform: scale(1.05);
}

/* Modal de Hábitos con Hora */
.habito-input-group {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #d4c5e0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.habito-input-group .habito-item {
    border: none;
    padding: 0;
    background: transparent;
    flex: 1;
    margin-bottom: 0;
}

.habito-input-group .habito-item:hover {
    background: transparent;
    transform: none;
}

.hora-input {
    padding: 0.6rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 120px;
    background: white;
}

/* Día del calendario con hábitos */
.day[data-habitos]::after {
    content: attr(data-habitos);
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.7rem;
}

.day {
    position: relative;
}

/* Página de Metas y Logros */
.metas-container {
    margin-top: 2rem;
}

.nueva-meta-section, .metas-lista-section, .logros-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nueva-meta-section h2, .metas-lista-section h2, .logros-section h2 {
    color: #f4c542;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Grids de Metas y Logros */
.metas-grid, .logros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Tarjeta de Meta */
.meta-card {
    background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
    border: 2px solid #ffe9f3;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(201, 165, 154, 0.2);
}

.meta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.3);
}

.meta-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.meta-icon {
    font-size: 2rem;
}

.meta-card h3 {
    color: #f4c542;
    font-size: 1.2rem;
    margin: 0;
}

.meta-descripcion {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ffe9f3;
}

.meta-fecha {
    font-size: 0.9rem;
    color: #777;
}

.btn-completar {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-completar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Tarjeta de Logro */
.logro-card {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 3px solid #d4a574;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logro-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.logro-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.logro-card h4 {
    color: #f4c542;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.logro-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
}

/* ==================== DASHBOARD STYLES ====================*/

.dashboard-header {
    text-align: center;
    background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    color: #5a4a42;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dashboard-header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
    color: #9d8576;
}

.dashboard-header h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    font-weight: normal;
    color: #7d5347;
}

.frase-motivacional {
    font-size: 1.1rem;
    font-style: italic;
    color: #9d8576;
    margin-top: 1rem;
    opacity: 0.95;
}

.fecha-dashboard {
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: 
        linear-gradient(90deg, transparent 0px, transparent 20px, rgba(255, 182, 193, 0.08) 20px, transparent 21px),
        linear-gradient(to bottom, 
            rgba(255, 248, 243, 0.95) 0%, 
            rgba(255, 253, 250, 0.95) 100%
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 29px,
            rgba(255, 192, 203, 0.12) 29px,
            rgba(255, 192, 203, 0.12) 30px
        );
    border: 2px dashed #ffc0cb;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 30px rgba(255, 182, 193, 0.25),
        inset 0 0 50px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: visible;
}

.stat-card::before {
    content: '🌸';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 2.2rem;
    opacity: 0.7;
    z-index: 10;
    transform: rotate(-15deg);
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.stat-card::after {
    content: '🦋';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 2.2rem;
    opacity: 0.7;
    z-index: 10;
    transform: rotate(15deg);
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.stat-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 
        0 12px 40px rgba(255, 182, 193, 0.35),
        inset 0 0 60px rgba(255, 255, 255, 0.6);
    border-color: #ffb6c1;
}

.stat-card:hover::before {
    transform: rotate(-20deg) scale(1.2);
    opacity: 0.9;
}

.stat-card:hover::after {
    transform: rotate(20deg) scale(1.2);
    opacity: 0.9;
}

.stat-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 3px 6px rgba(139, 111, 78, 0.3));
    position: relative;
}

.stat-icon::before {
    content: '🌺';
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
    transform: rotate(25deg);
}

.stat-icon::after {
    content: '🌸';
    position: absolute;
    bottom: -10px;
    left: 15px;
    font-size: 1.5rem;
    opacity: 0.3;
    transform: rotate(-15deg);
}

.stat-icon-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: 
        drop-shadow(0 4px 8px rgba(139, 111, 78, 0.25))
        sepia(0.1);
    border: 4px solid #c9a86a;
    border-radius: 50%;
    padding: 0.5rem;
    background: radial-gradient(circle, #ffffff 0%, #fef9f3 100%);
}

.stat-numero {
    font-size: 2.5rem;
    font-weight: 400;
    color: #d4a574;
    margin: 0.8rem 0 0.5rem;
    letter-spacing: 1px;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    position: relative;
    text-shadow: 0 2px 4px rgba(139, 111, 78, 0.15);
}

.stat-label {
    font-size: 0.75rem;
    color: #8b6f4e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    opacity: 0.85;
    position: relative;
    padding: 0.5rem 0;
}

.stat-label::before,
.stat-label::after {
    content: '✿';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.4;
    color: #c9a86a;
}

.stat-label::before {
    left: 15%;
}

.stat-label::after {
    right: 15%;
}

/* Tarjeta de Nivel de Logros - Medidor de Progreso */
.nivel-logros-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.nivel-icono {
    font-size: 2.5rem;
    opacity: 0.8;
    filter: drop-shadow(0 3px 6px rgba(244, 197, 66, 0.4));
}

.nivel-label {
    font-size: 0.75rem;
    color: #8b6f4e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    opacity: 0.85;
}

.nivel-numero {
    font-size: 2.5rem;
    font-weight: 400;
    color: #d4a574;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    text-shadow: 0 2px 4px rgba(139, 111, 78, 0.15);
}

.nivel-barra-container {
    width: 100%;
    height: 20px;
    background: rgba(255, 192, 203, 0.15);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 192, 203, 0.3);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nivel-barra-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #f4c542 50%, #ffed4e 100%);
    border-radius: 15px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 10px rgba(244, 197, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    width: 0%;
}

.nivel-descripcion {
    font-size: 0.85rem;
    color: #d4a574;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-style: italic;
    opacity: 0.9;
    text-transform: capitalize;
}

/* ===== CELEBRACIÓN DE NIVEL ===== */
.celebracion-nivel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 182, 193, 0.95) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.celebracion-nivel-overlay.visible {
    opacity: 1;
}

.celebracion-nivel-contenido {
    position: relative;
    animation: celebracionNivelEntrada 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes celebracionNivelEntrada {
    0% {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.celebracion-nivel-mensaje {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(244, 197, 66, 0.5);
    border: 4px solid #f4c542;
    max-width: 500px;
    position: relative;
    z-index: 10;
}

.celebracion-nivel-mensaje h2 {
    font-size: 2.5rem;
    color: #f4c542;
    margin: 0 0 1rem 0;
    font-weight: bold;
    font-family: 'Libre Baskerville', 'Georgia', serif;
}

.celebracion-nivel-texto {
    font-size: 1.2rem;
    color: #8b6f4e;
    margin: 0.5rem 0;
    font-family: 'Georgia', serif;
}

.celebracion-nivel-numero {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700 0%, #f4c542 50%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    text-shadow: 0 4px 8px rgba(244, 197, 66, 0.3);
}

.celebracion-nivel-titulo {
    font-size: 2rem;
    color: #d4a574;
    margin: 1rem 0 2rem 0;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-style: italic;
}

.btn-celebracion-cerrar {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-celebracion-cerrar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6);
}

/* Confeti */
.confeti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.confeti {
    position: absolute;
    top: -10%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: caerConfeti 4s linear infinite;
}

.confeti-emoji {
    font-size: 2rem;
    width: auto;
    height: auto;
}

@keyframes caerConfeti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

.emociones-section {
    background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=800');
    background-size: cover;
    background-position: center;
    border: 2px dashed #ffc0cb;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
    overflow: hidden;
}

.emociones-section::before {
    content: '🌸';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: flotar 3s ease-in-out infinite;
    z-index: 2;
}

.emociones-section::after {
    content: '🦋';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: flotar 3s ease-in-out infinite 1.5s;
    z-index: 2;
}

.emociones-section h3 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.75) 0%, rgba(255, 192, 203, 0.75) 100%);
    color: #f4c542;
    margin: 0;
    padding: 1.5rem 2rem;
    border-bottom: 2px dashed #ffc0cb;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 1px 3px rgba(255, 192, 203, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.emociones-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.emocion-badge {
    font-size: 2.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.emocion-badge:hover {
    transform: scale(1.2);
}

.texto-suave {
    color: #999;
    font-style: italic;
    text-align: center;
}

.ritual-section {
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ritual-section.matutino {
    background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=800');
    background-size: cover;
    background-position: center;
    border: 2px dashed #ffc0cb;
    padding: 2rem;
    position: relative;
}

.ritual-section.matutino::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 249, 245, 0.85) 100%);
    border-radius: 18px;
    z-index: 0;
}

.ritual-section.matutino > * {
    position: relative;
    z-index: 1;
}

.ritual-section.nocturno {
    border: 2px dashed #f4c542;
    background: linear-gradient(135deg, #f8f3f0 0%, #fef8f3 100%);
}

.ritual-section h3 {
    background: linear-gradient(135deg, #ffe9f3 0%, #fff0f7 100%);
    color: #f4c542;
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    border-bottom: 2px dashed #ffc0cb;
    border-radius: 18px 18px 0 0;
    position: relative;
    z-index: 1;
}

.ritual-section.nocturno h3 {
    background: linear-gradient(135deg, rgba(248, 243, 240, 0.95) 0%, rgba(254, 248, 243, 0.95) 100%);
    border-bottom: 2px dashed #f4c542;
}

.ritual-descripcion {
    color: #8b7d7d;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.afirmacion-sugerida-box {
    background: white;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.afirmacion-label {
    font-weight: bold;
    color: #f4c542;
    margin: 0 0 0.5rem 0;
}

.afirmacion-texto {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.btn-renovar {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-renovar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.ritual-section input[type="text"],
.ritual-section textarea {
    width: 90%;
    max-width: 800px;
    margin: 1.5rem auto;
    display: block;
    padding: 1.5rem 2rem;
    border: 2px dashed #ffc0cb;
    border-radius: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-family: inherit;
    box-sizing: border-box;
    background: white;
    color: #222;
}

.ritual-section input::placeholder,
.ritual-section textarea::placeholder {
    color: #666;
    opacity: 1;
    font-weight: 500;
}

.ritual-section textarea {
    min-height: 250px;
    resize: vertical;
    text-align: left;
    padding: 2rem;
}

.ritual-section input:focus,
.ritual-section textarea:focus {
    outline: none;
    border-color: #9d8576;
    box-shadow: 0 0 20px rgba(157, 133, 118, 0.4);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.ritual-section label {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f4c542;
    margin: 1.5rem 0 0.8rem 0;
    text-align: left;
    background: #ffe9f3;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
}

.btn-guardar-ritual {
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
}

.btn-guardar-ritual:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.4);
}

.planificador-section {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
    border: 2px solid #c9d4a5;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.planificador-section h3 {
    color: #f4c542;
    margin-top: 0;
}

.agregar-tarea-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.agregar-tarea-box input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    border: 2px solid #ffe9f3;
    border-radius: 8px;
    font-size: 1rem;
}

.agregar-tarea-box select {
    padding: 0.8rem;
    border: 2px solid #ffe9f3;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    min-width: 120px;
}

.btn-agregar-tarea {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-agregar-tarea:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.lista-tareas {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tarea-item {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.tarea-item.completada {
    opacity: 0.6;
    background: #f0f0f0;
}

.tarea-item.completada .tarea-texto {
    text-decoration: line-through;
}

.tarea-item.prioridad-urgente {
    border-color: #ff4444;
    border-width: 3px;
}

.tarea-item.prioridad-importante {
    border-color: #ffaa00;
    border-width: 3px;
}

.tarea-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.tarea-texto {
    flex: 1;
    font-size: 1rem;
}

.tarea-prioridad {
    font-size: 0.85rem;
    font-weight: bold;
}

.gratitud-section {
    background: linear-gradient(135deg, #fff 0%, #fff5ee 100%);
    border: 2px solid #ffe9f3;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.gratitud-section h3 {
    color: #f4c542;
    margin-top: 0;
}

.gratitud-descripcion {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.gratitudes-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gratitudes-inputs input {
    padding: 1.2rem;
    border: 2px solid #ffe9f3;
    border-radius: 12px;
    font-size: 1.05rem;
    text-align: center;
}

.btn-guardar-gratitud {
    background: linear-gradient(135deg, #f4c542 0%, #d4a5a5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.btn-guardar-gratitud:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.4);
}

/* SMS Section Styles */
.sms-container {
    max-width: 900px;
    margin: 0 auto;
}

.sms-status {
    margin-bottom: 2rem;
}

.alert {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border: 2px solid #81c784;
}

.alert-warning {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f57c00;
    border: 2px solid #ffb74d;
}

.alert h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.sms-form-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid #d0d0d0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sms-form-container h2 {
    color: #6b6b6b;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sms-form-container label {
    display: block;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.sms-form-container input[type="tel"],
.sms-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background: white;
}

.sms-form-container input[type="tel"]:focus,
.sms-form-container textarea:focus {
    border-color: #9e9e9e;
    outline: none;
}

.sms-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

.helper-text {
    display: block;
    color: #757575;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
}

.btn-enviar-sms {
    background: linear-gradient(135deg, #757575 0%, #616161 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-enviar-sms:hover {
    background: linear-gradient(135deg, #616161 0%, #424242 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 97, 97, 0.3);
}

.sms-history-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid #d0d0d0;
    border-radius: 12px;
    padding: 2rem;
}

.sms-history-container h2 {
    color: #6b6b6b;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sms-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sms-history-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.sms-history-item:hover {
    box-shadow: 0 4px 12px rgba(158, 158, 158, 0.2);
    transform: translateY(-2px);
    border-color: #bdbdbd;
}

.sms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.sms-phone {
    font-weight: bold;
    color: #616161;
}

.sms-date {
    color: #9e9e9e;
    font-size: 0.85rem;
}

.sms-message {
    color: #424242;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.sms-status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-queued,
.status-sent,
.status-delivered {
    background: #66bb6a;
    color: white;
}

.status-failed,
.status-undelivered {
    background: #ef5350;
    color: white;
}

.status-sending {
    background: #ffb74d;
    color: #333;
}

/* ==================== MIS DATOS SECTION ====================*/
.datos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.datos-resumen {
    background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.resumen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.resumen-card {
    background: white;
    border: 2px solid #d4c5e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.resumen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 123, 168, 0.2);
}

.resumen-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.resumen-numero {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b7ba8;
    margin: 0.5rem 0;
}

.resumen-label {
    color: #666;
    font-size: 0.9rem;
}

.datos-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.datos-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    background: #f0f0f0;
    border: 2px solid #d4c5e0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.datos-tab-btn:hover {
    background: #e8d8f0;
}

.datos-tab-btn.active {
    background: linear-gradient(135deg, #8b7ba8 0%, #9d89b8 100%);
    color: white;
    border-color: #8b7ba8;
}

.datos-tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #d4c5e0;
    margin-bottom: 2rem;
}

.datos-tab-content.active {
    display: block;
}

.datos-tab-content h3 {
    color: #8b7ba8;
    margin-top: 0;
}

.dato-item {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.dato-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.dato-item.completada {
    opacity: 0.7;
    background: #f0f8f0;
}

.dato-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.dato-emoji {
    font-size: 1.5rem;
}

.dato-fecha {
    color: #777;
    font-size: 0.9rem;
}

.dato-titulo {
    flex: 1;
    font-weight: bold;
    color: #333;
}

.btn-borrar-dato {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-borrar-dato:hover {
    background: #c82333;
    transform: scale(1.05);
}

.dato-contenido {
    padding-left: 2.5rem;
}

.dato-contenido p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

.dato-badge {
    display: inline-block;
    background: #8b7ba8;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.dato-badge.completada {
    background: #28a745;
}

.dato-badge.pendiente {
    background: #ffc107;
    color: #333;
}

.dato-fecha-limite {
    color: #777;
    font-size: 0.9rem;
}

.datos-peligro {
    background: linear-gradient(135deg, #ffe4e4 0%, #fff0f0 100%);
    border: 3px solid #dc3545;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.datos-peligro h3 {
    color: #dc3545;
    margin-top: 0;
}

.datos-peligro p {
    color: #666;
    margin: 1rem 0;
}

.btn-borrar-todo {
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-borrar-todo:hover {
    background: #c82333;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.texto-suave {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* ==================== PORTADA AURORA ====================*/
.portada-aurora {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(139, 123, 168, 0.2);
}

.logo-portada {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    animation: fadeInScale 1s ease-out;
    filter: drop-shadow(0 4px 15px rgba(139, 123, 168, 0.3));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.titulo-portada {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8b7ba8 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline-portada {
    font-size: 1.3rem;
    color: #8b7ba8;
    font-weight: 500;
    margin: 1rem 0 0 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bienvenida h2 {
    font-size: 1.8rem;
    color: #8b7ba8;
}

/* ==================== COMPARTIR WHATSAPP ====================*/
.compartir-whatsapp-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f5e9 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 2px solid #25D366;
}

.compartir-whatsapp-section h3 {
    color: #8b7ba8;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.compartir-descripcion {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==================== ESTADÍSTICAS ADMIN ====================*/
.estadisticas-generales {
    margin-bottom: 2rem;
}

.lista-usuarios-admin {
    margin-top: 2rem;
}

.usuario-admin-card {
    background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
    border: 2px solid #d4c5e0;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 123, 168, 0.2);
    transition: all 0.3s ease;
}

.usuario-admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 123, 168, 0.3);
}

.usuario-admin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4c5e0;
}

.usuario-numero {
    background: linear-gradient(135deg, #8b7ba8 0%, #9d89b8 100%);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
}

.usuario-nombre {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b5cf6;
    flex: 1;
}

.usuario-admin-info {
    padding: 0.5rem 0;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.info-label {
    font-weight: bold;
    color: #666;
    min-width: 120px;
}

.info-value {
    color: #333;
    flex: 1;
}

.usuario-admin-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-badge {
    background: white;
    border: 2px solid #8b7ba8;
    color: #8b7ba8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Banner de Amazon Journals */
.amazon-journal-banner {
  background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
  border: 2px solid #d4af37;
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.amazon-journal-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.journal-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.journal-icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.journal-text h3 {
  color: #8b4789;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.journal-text p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.btn-amazon-journal {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  text-align: center;
}

.btn-amazon-journal:hover {
  background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-amazon-journal span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .agregar-tarea-box {
        flex-direction: column;
    }
    
    .agregar-tarea-box input,
    .agregar-tarea-box select,
    .btn-agregar-tarea {
        width: 100%;
        min-width: auto;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-label {
        min-width: auto;
    }
}

@media (max-width: 600px) {
  .journal-content {
    flex-direction: column;
    text-align: center;
  }
  
  .journal-text h3 {
    font-size: 1.1rem;
  }
  
  .journal-text p {
    font-size: 0.9rem;
  }
  
  .btn-amazon-journal {
    width: 100%;
    padding: 1rem;
  }
}

/* ============ SECCIÓN OPINIONES ============ */
.opinion-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
}

.opinion-box {
    background: linear-gradient(135deg, #f5e6dd 0%, #ffe4e4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(157, 133, 118, 0.15);
}

.opinion-box h3 {
    color: #9d8576;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.opinion-helper {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.emociones-opinion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.emocion-opinion-btn {
    background: white;
    border: 3px solid transparent;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.emocion-opinion-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(157, 133, 118, 0.25);
    border-color: #ffe9f3;
}

.emocion-opinion-btn.activo {
    background: linear-gradient(135deg, #ffe9f3 0%, #ffe9f3 100%);
    border-color: #9d8576;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(157, 133, 118, 0.35);
}

.emocion-icono {
    font-size: 3rem;
}

.emocion-texto {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9d8576;
}

.emocion-opinion-btn.activo .emocion-texto {
    color: white;
}

#opinion-comentario {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8d5f2;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

#opinion-comentario:focus {
    outline: none;
    border-color: #ffe9f3;
    box-shadow: 0 0 15px rgba(157, 133, 118, 0.2);
}

.char-counter {
    text-align: right;
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.btn-enviar-opinion {
    background: linear-gradient(135deg, #f4c542 0%, #ffe9f3 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    width: 100%;
    box-shadow: 0 6px 20px rgba(201, 165, 154, 0.3);
}

.btn-enviar-opinion:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 165, 154, 0.4);
}

.btn-enviar-opinion:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .opinion-box {
        padding: 1.5rem;
    }
    
    .emociones-opinion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emocion-icono {
        font-size: 2.5rem;
    }
    
    .emocion-texto {
        font-size: 1rem;
    }
}

/* ===== SECCIÓN CARTAS DE PODER ===== */
.cartas-poder-section {
    background: white;
    border-radius: 25px;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 30px rgba(255, 212, 229, 0.3);
    margin: 2rem auto;
    max-width: 100%;
    overflow: visible;
}

@media (min-width: 768px) {
    .cartas-poder-section {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cartas-poder-section {
        max-width: 95%;
        padding: 2.5rem;
    }
}

.cartas-instrucciones {
    text-align: center;
    font-size: 1.2rem;
    color: #6b3f3f;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cartas-contador {
    text-align: center;
    margin-bottom: 2rem;
}

.cartas-contador p {
    font-size: 1.3rem;
    color: #6b3f3f;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cartas-contador span {
    color: #f4c542;
    font-size: 1.5rem;
}

.btn-reiniciar-cartas {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    color: #6b3f3f;
    border: 2px solid #f4c542;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.btn-reiniciar-cartas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
}

.cartas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 130px));
    gap: 2.5rem;
    margin: 2rem 0 0 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    place-items: center;
}

.carta-container {
    perspective: 1000px;
    width: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.carta-container.volteada {
    z-index: 10;
}

.carta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.carta-container.volteada .carta {
    transform: rotateY(180deg);
}

.carta-frente,
.carta-reverso {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.carta-frente {
    background: linear-gradient(135deg, #ffffff 0%, #fffcf7 100%);
    border: 4px solid #f4c542;
    position: absolute;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transform: rotateY(0deg);
    z-index: 2;
}

/* Fondos rotativos VINTAGE para las cartas */
.carta-frente.bg-1 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_romantic_pin_03b31c0a.jpg'); }
.carta-frente.bg-2 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_romantic_pin_a85284f8.jpg'); }
.carta-frente.bg-3 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_romantic_pin_394d0fc2.jpg'); }
.carta-frente.bg-4 { background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 252, 247, 0.3)), url('../attached_assets/stock_images/vintage_gold_jewelry_0024a280.jpg'); }
.carta-frente.bg-5 { background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 252, 247, 0.3)), url('../attached_assets/stock_images/vintage_gold_jewelry_bf5cca6e.jpg'); }
.carta-frente.bg-6 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_lace_fabric__15c23ba9.jpg'); }
.carta-frente.bg-7 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_lace_fabric__081d699c.jpg'); }
.carta-frente.bg-8 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_flowers_bouq_e85c060a.jpg'); }
.carta-frente.bg-9 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_flowers_bouq_8444caa3.jpg'); }
.carta-frente.bg-10 { background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 252, 247, 0.25)), url('../attached_assets/stock_images/vintage_flowers_bouq_5dd95eff.jpg'); }

.carta-frente::before {
    content: '✨';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 0;
}

.carta-frente::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(244, 197, 66, 0.3);
    border-radius: 15px;
}

.carta-numero {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.5rem;
    color: #f4c542;
    font-weight: bold;
    z-index: 50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.carta-reverso {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
    border: 4px solid #f4c542;
    position: absolute;
    transform: rotateY(180deg);
    z-index: 1;
}

.carta-mensaje {
    font-size: 0.85rem;
    color: #6b3f3f;
    text-align: center;
    font-weight: 600;
    line-height: 1.35;
    padding: 0.6rem;
}

@media (max-width: 1024px) {
    .cartas-grid {
        grid-template-columns: repeat(3, minmax(0, 120px));
        gap: 2rem;
    }
    
    .carta-mensaje {
        font-size: 0.78rem;
        padding: 0.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .cartas-grid {
        grid-template-columns: repeat(2, minmax(0, 120px));
        gap: 1.5rem;
        padding: 0;
    }
    
    .carta-mensaje {
        font-size: 0.72rem;
        padding: 0.4rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .cartas-grid {
        grid-template-columns: repeat(2, minmax(0, 110px));
        gap: 1.2rem;
        padding: 0;
    }
    
    .carta-mensaje {
        font-size: 0.8rem;
        padding: 0.5rem;
        line-height: 1.4;
    }
    
    .carta-frente::before {
        font-size: 2.5rem;
    }
    
    .cartas-instrucciones {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cartas-contador p {
        font-size: 1.1rem;
    }
    
    .btn-reiniciar-cartas {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== CELEBRACIÓN DE COMPLETACIÓN ===== */
.celebracion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 212, 229, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.celebracion-overlay.visible {
    opacity: 1;
}

.celebracion-contenido {
    animation: celebracionEntrada 0.6s ease;
}

@keyframes celebracionEntrada {
    0% {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.celebracion-mensaje {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(244, 197, 66, 0.4);
    border: 4px solid #f4c542;
    max-width: 500px;
}

.celebracion-mensaje h2 {
    font-size: 2.5rem;
    color: #f4c542;
    margin: 0 0 1rem 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(244, 197, 66, 0.3);
}

.celebracion-mensaje p {
    font-size: 1.3rem;
    color: #6b3f3f;
    margin: 0.8rem 0;
    line-height: 1.6;
}

.celebracion-frase {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: #f4c542 !important;
    margin: 1.5rem 0 !important;
    text-shadow: 1px 1px 2px rgba(244, 197, 66, 0.2);
}

.btn-cerrar-celebracion {
    background: linear-gradient(135deg, #f4c542 0%, #ffd4e5 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(244, 197, 66, 0.4);
    transition: all 0.3s ease;
}

.btn-cerrar-celebracion:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 197, 66, 0.5);
}

.btn-cerrar-celebracion:active {
    transform: translateY(0);
}

/* Confetti */
.confetti {
    position: fixed;
    top: -10px;
    z-index: 10000;
    pointer-events: none;
    animation: caerConfetti linear forwards;
}

@keyframes caerConfetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .celebracion-mensaje {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .celebracion-mensaje h2 {
        font-size: 2rem;
    }
    
    .celebracion-mensaje p {
        font-size: 1.1rem;
    }
    
    .celebracion-frase {
        font-size: 1.2rem !important;
    }
    
    .btn-cerrar-celebracion {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ========================================
   DIARIO SCRAPBOOK - ESTILO COLLAGE
   ======================================== */

.diario-scrapbook-page {
    background: linear-gradient(135deg, #f5e6d3 0%, #faf5f0 50%, #ffe9f3 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.diario-scrapbook-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 2.5rem 1rem;
    background: 
        linear-gradient(135deg, rgba(255, 240, 245, 0.9) 0%, rgba(255, 228, 240, 0.8) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.3) 0%, transparent 50%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
}

.diario-scrapbook-header::before {
    content: '🌸';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: flotar 3s ease-in-out infinite;
}

.diario-scrapbook-header::after {
    content: '🌺';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: flotar 3s ease-in-out infinite 1.5s;
}

@keyframes flotar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== ANIMACIONES DE NATURALEZA PARA HEADERS ===== */
/* Pétalos cayendo suavemente */
@keyframes petaloCayendo {
    0% { 
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { 
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mariposas volando */
@keyframes mariposaVolar {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% { 
        transform: translate(-5px, -8px) rotate(-5deg);
    }
    75% { 
        transform: translate(15px, -12px) rotate(3deg);
    }
}

/* Hojas en el viento */
@keyframes hojaViento {
    0%, 100% { 
        transform: translateX(0) rotate(0deg);
    }
    25% { 
        transform: translateX(20px) rotate(15deg);
    }
    50% { 
        transform: translateX(-10px) rotate(-10deg);
    }
    75% { 
        transform: translateX(15px) rotate(8deg);
    }
}

/* Estrellas brillantes */
@keyframes estrellasBrillar {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

/* Corazones flotando */
@keyframes corazonFlotar {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}

/* Destellos mágicos */
@keyframes destelloBrillar {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ===== ANIMACIONES DE FONDOS ===== */
/* Zoom suave - Ken Burns Effect */
@keyframes fondoZoom {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

/* Movimiento lateral suave */
@keyframes fondoPan {
    0%, 100% { 
        transform: translateX(0) scale(1.1);
    }
    50% { 
        transform: translateX(-20px) scale(1.1);
    }
}

/* Movimiento diagonal */
@keyframes fondoDiagonal {
    0%, 100% { 
        transform: translate(0, 0) scale(1.08);
    }
    50% { 
        transform: translate(-15px, -10px) scale(1.08);
    }
}

/* Respiración - scale up and down */
@keyframes fondoRespiracion {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.03);
    }
}

/* ===== CLASES PARA APLICAR ANIMACIONES A HEADERS ===== */

/* 🌸 ESTILO 1: FLORES FLOTANTES (como Empoderamiento actual) */
.header-flores-flotantes::before {
    content: '🌸';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: flotar 3s ease-in-out infinite;
}

.header-flores-flotantes::after {
    content: '🌺';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: flotar 3s ease-in-out infinite 1.5s;
}

/* 🍃 ESTILO 2: PÉTALOS CAYENDO */
.header-petalos-cayendo::before {
    content: '🌸';
    position: absolute;
    top: -10px;
    left: 15%;
    font-size: 2rem;
    animation: petaloCayendo 5s ease-in-out infinite;
}

.header-petalos-cayendo::after {
    content: '🌸';
    position: absolute;
    top: -10px;
    right: 20%;
    font-size: 2rem;
    animation: petaloCayendo 5s ease-in-out infinite 2s;
}

/* 🦋 ESTILO 3: MARIPOSAS VOLANDO */
.header-mariposas::before {
    content: '🦋';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2.3rem;
    opacity: 0.5;
    animation: mariposaVolar 4s ease-in-out infinite;
}

.header-mariposas::after {
    content: '🦋';
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.5;
    animation: mariposaVolar 4s ease-in-out infinite 2s;
}

/* 🌿 ESTILO 4: HOJAS EN EL VIENTO */
.header-hojas-viento::before {
    content: '🍃';
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 2.2rem;
    opacity: 0.45;
    animation: hojaViento 3.5s ease-in-out infinite;
}

.header-hojas-viento::after {
    content: '🍂';
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 2.2rem;
    opacity: 0.45;
    animation: hojaViento 3.5s ease-in-out infinite 1.8s;
}

/* ✨ ESTILO 5: ESTRELLAS BRILLANTES */
.header-estrellas::before {
    content: '✨';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 2.5rem;
    animation: estrellasBrillar 2.5s ease-in-out infinite;
}

.header-estrellas::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.3rem;
    animation: estrellasBrillar 2.5s ease-in-out infinite 1.2s;
}

/* 💖 ESTILO 6: CORAZONES FLOTANDO */
.header-corazones::before {
    content: '💖';
    position: absolute;
    top: 18px;
    left: 25px;
    font-size: 2.4rem;
    animation: corazonFlotar 3s ease-in-out infinite;
}

.header-corazones::after {
    content: '💕';
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 2.2rem;
    animation: corazonFlotar 3s ease-in-out infinite 1.5s;
}

.diario-scrapbook-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #d4a574;
    background: linear-gradient(135deg, #fffcf7 0%, #fef5f0 100%);
    padding: 1rem 2rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.2);
    border-radius: 15px;
    border: 2px solid #f4d5b8;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 600;
}

.diario-scrapbook-subtitle {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #a67c5c;
    background: transparent;
    padding: 0.5rem 1rem;
    display: block;
    margin-top: 0.8rem;
    font-style: italic;
    font-weight: normal;
}

.diario-scrapbook-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 3px solid #ffd4a3;
}

.diario-scrapbook-form {
    font-family: 'Georgia', serif;
}

/* Labels */
/* Área de texto del diario */
.diario-texto-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0.5rem;
    background: linear-gradient(135deg, #fffcf7 0%, #fef8f1 100%);
    border: 3px solid #d4a574;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 111, 78, 0.15);
}

@media (min-width: 768px) {
    .diario-texto-section {
        padding: 1.5rem 0.8rem;
    }
}

.diario-texto-label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #6b4423;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.diario-texto-area {
    width: 100%;
    padding: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4a3a;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    resize: vertical;
    min-height: 200px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.diario-texto-area:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.3);
}

.diario-texto-area::placeholder {
    color: #b8a890;
    font-style: italic;
    opacity: 0.7;
}

.scrapbook-label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: #6b4423;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Canvas Section */
.scrapbook-canvas-section {
    margin-bottom: 2rem;
    padding: 0;
}

/* Tabs del canvas */
.canvas-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    border-bottom: 3px solid #ffd4a3;
    padding-bottom: 0.5rem;
}

.canvas-tab {
    padding: 0.7rem 1.2rem;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: bold;
    background: transparent;
    color: #8b7355;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -0.5rem;
}

.canvas-tab:hover {
    color: #d4895b;
    background: rgba(255, 212, 163, 0.1);
}

.canvas-tab.active {
    color: #d4895b;
    border-bottom-color: #ff85c1;
    background: linear-gradient(135deg, rgba(255, 182, 217, 0.1) 0%, rgba(255, 233, 243, 0.2) 100%);
}

/* Paneles del canvas */
.canvas-panel {
    display: none;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe9f3 100%);
    border: 3px dashed #ffa8d3;
    border-radius: 12px;
    margin-bottom: 1rem;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.canvas-panel.active {
    display: block;
}

/* Botón de agregar foto (panel subir) */
.btn-agregar-foto {
    display: block;
    width: auto;
    max-width: 280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffb6d9 0%, #ff85c1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-agregar-foto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 193, 0.4);
}

/* Búsqueda de fotos online */
.buscar-fotos-online {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.input-buscar-foto {
    flex: 1;
    padding: 0.8rem 1rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 2px solid #ffd4a3;
    border-radius: 25px;
    background: white;
    color: #4a4a4a;
}

.input-buscar-foto:focus {
    outline: none;
    border-color: #ff85c1;
    box-shadow: 0 0 0 3px rgba(255, 133, 193, 0.1);
}

.btn-buscar-foto {
    padding: 0.8rem 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-buscar-foto:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

/* Resultados de búsqueda */
.resultados-busqueda {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.foto-resultado {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.foto-resultado:hover {
    transform: scale(1.05);
}

.foto-resultado img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 133, 193, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foto-resultado:hover .foto-overlay,
.foto-galeria:hover .foto-overlay {
    opacity: 1;
}

/* Galería de fotos guardadas */
.galeria-fotos-guardadas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.foto-galeria {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffd4a3;
}

.foto-galeria:hover {
    transform: scale(1.05);
    border-color: #ff85c1;
}

.foto-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.canvas-acciones {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-agregar-sticker {
    padding: 0.8rem 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffb6d9 0%, #ff85c1 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 133, 193, 0.4);
}

.btn-agregar-foto:hover,
.btn-agregar-sticker:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 133, 193, 0.6);
}

/* Fondos Grid */
.fondos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.fondo-item {
    height: 80px;
    border: 3px solid #ffd4a3;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fondo-item span {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #6b4423;
    font-family: 'Georgia', serif;
}

.fondo-item:hover {
    transform: scale(1.05);
    border-color: #ff85c1;
    box-shadow: 0 4px 12px rgba(255, 133, 193, 0.4);
}

@media (max-width: 768px) {
    .fondos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Botón Agregar Texto */
.btn-agregar-texto {
    display: block;
    width: 100%;
    padding: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #a8dadc 0%, #457b9d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-agregar-texto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(69, 123, 157, 0.4);
}

/* Panel de stickers */
.stickers-panel {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe9f3 100%);
    border: 3px dashed #ffa8d3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.stickers-panel h4 {
    margin-top: 0;
    color: #6b4423;
    font-family: 'Georgia', serif;
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.sticker-item {
    background: white;
    border: 2px solid #ffd4a3;
    border-radius: 12px;
    padding: 0.5rem;
    font-size: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .stickers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sticker-item {
        font-size: 1.5rem;
        padding: 0.3rem;
    }
}

.sticker-item:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 212, 163, 0.5);
}

/* Canvas */
.scrapbook-canvas {
    min-height: 550px;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    margin: 0 auto;
    background: linear-gradient(135deg, #fef9f3 0%, #fff 50%, #fef5f9 100%);
    border: 4px solid #ffd4a3;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(255, 182, 217, 0.2);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 212, 163, 0.1) 35px, rgba(255, 212, 163, 0.1) 70px);
}

@media (max-width: 768px) {
    .scrapbook-canvas {
        min-height: 450px;
        max-width: 100%;
    }
}

.canvas-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #b8a890;
    font-style: italic;
    pointer-events: none;
}

.canvas-foto,
.canvas-sticker {
    position: absolute;
    cursor: move;
    transition: transform 0.2s ease;
}

.canvas-foto {
    max-width: 250px;
    min-width: 60px;
    width: 150px;
    border: 8px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform-origin: center;
    resize: both;
    overflow: hidden;
}

.canvas-foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.canvas-sticker {
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.canvas-texto {
    position: absolute;
    cursor: move;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 2px solid transparent;
    max-width: 400px;
    min-width: 150px;
    word-wrap: break-word;
    white-space: pre-wrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.canvas-texto:hover {
    border-color: #ffd4a3;
}

.canvas-texto[contenteditable="true"] {
    border-color: #ff85c1;
    outline: none;
    cursor: text;
}

.elemento-seleccionado {
    outline: 3px dashed #ff85c1;
    outline-offset: 5px;
}

.btn-eliminar-elemento {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Text Section */
.scrapbook-text-section {
    margin-bottom: 2rem;
}

.scrapbook-textarea {
    width: 100%;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #4a4a4a;
    background: #fffef8;
    border: 3px solid #ffd4a3;
    border-radius: 12px;
    padding: 1.5rem;
    line-height: 1.8;
    resize: vertical;
    transition: all 0.3s ease;
}

.scrapbook-textarea:focus {
    outline: none;
    border-color: #ff85c1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 133, 193, 0.2);
}

.scrapbook-textarea::placeholder {
    color: #b8a890;
    font-style: italic;
}

/* Botón Guardar */
.btn-guardar-scrapbook {
    width: 100%;
    padding: 1.2rem 2rem;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff85c1 0%, #ffb6d9 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 133, 193, 0.5);
    margin-top: 1rem;
}

.btn-guardar-scrapbook:hover {
    background: linear-gradient(135deg, #ff6fb3 0%, #ffa8d3 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 133, 193, 0.6);
}

.btn-guardar-scrapbook:active {
    transform: translateY(0);
}

/* Mensaje de Éxito */
.mensaje-diario {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    display: none;
}

.mensaje-diario.exito {
    display: block;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.mensaje-diario.error {
    display: block;
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

/* Páginas Anteriores */
.scrapbook-entradas-anteriores {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 4px dashed #ffd4a3;
}

.scrapbook-lista-entradas {
    margin-top: 1.5rem;
}

.scrapbook-pagina-item {
    background: linear-gradient(135deg, #fffef8 0%, #fff5f9 100%);
    border: 4px solid #ffd4a3;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.scrapbook-pagina-item:hover {
    box-shadow: 0 8px 25px rgba(255, 182, 217, 0.3);
    border-color: #ff85c1;
}

.scrapbook-pagina-fecha {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: #8b7355;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: right;
}

.scrapbook-pagina-canvas {
    min-height: 300px;
    background: linear-gradient(135deg, #fef9f3 0%, #fff 50%, #fef5f9 100%);
    border: 3px solid #ffe9d6;
    border-radius: 8px;
    position: relative;
    margin-bottom: 1rem;
    padding: 1rem;
}

.scrapbook-pagina-texto {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    color: #5a4a3a;
    line-height: 1.8;
    white-space: pre-wrap;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.95) 0%, rgba(254, 248, 241, 0.9) 100%);
    border: 2px solid #e8d5b7;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(139, 111, 78, 0.1);
}

.btn-descargar-pagina {
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-descargar-pagina:hover {
    background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.6);
}

.btn-descargar-pagina:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .diario-vintage-page {
        padding: 1rem 0.5rem;
    }
    
    .diario-vintage-title {
        font-size: 1.8rem;
    }
    
    .diario-vintage-subtitle {
        font-size: 1rem;
    }
    
    .diario-vintage-container {
        padding: 1.5rem;
    }
    
    .iconos-grid {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 0.5rem;
    }
    
    .icono-item {
        padding: 0.8rem;
        font-size: 1.5rem;
    }
}

/* ============================================
   EL AÑO DONDE FLOREZCO - VISION BOARD
   ============================================ */

.año-florezco-page {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.año-florezco-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffe9f3 0%, #ffd4e5 50%, #fff5e6 100%);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 212, 229, 0.5);
}

.año-florezco-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4895b 0%, #f4c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem;
    font-weight: bold;
}

.año-florezco-subtitle {
    font-size: 1.2rem;
    color: #8b7d7d;
    margin: 0;
}

.año-florezco-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Vision Board Section */
.vision-board-section {
    background: linear-gradient(135deg, #fef9f3 0%, #fff 50%, #fef5f9 100%);
    border-radius: 25px;
    padding: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vision-board-titulo {
    font-size: 1.8rem;
    color: #d4895b;
    text-align: center;
    margin: 0 0 0.5rem;
}

.vision-board-descripcion {
    text-align: center;
    color: #8b7d7d;
    margin: 0 0 2rem;
}

.vision-canvas {
    min-height: 600px;
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    background: linear-gradient(135deg, #ffe9f3 0%, #ffd4e5 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 3px dashed #f4c542;
    margin: 2rem auto;
}

.btn-guardar-vision {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.4);
}

.btn-guardar-vision:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.6);
}

/* Frases rápidas */
.frases-rapidas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.btn-frase-rapida {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ffe9f3 0%, #ffd4e5 100%);
    border: 2px solid #f4c542;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #d4895b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-frase-rapida:hover {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* Metas del Año */
.metas-año-section {
    background: linear-gradient(135deg, #fef9f3 0%, #fff 50%, #fef5f9 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.agregar-meta-año {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.agregar-meta-año input {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ffd4e5;
    border-radius: 15px;
}

.btn-agregar-meta-año {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lista-metas-año {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-año-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 15px;
    border-left: 4px solid #f4c542;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.meta-año-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.meta-año-item.completada {
    opacity: 0.6;
    text-decoration: line-through;
}

.meta-año-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.meta-año-item span {
    flex: 1;
    font-size: 1.1rem;
    color: #8b7d7d;
}

.btn-eliminar-meta {
    padding: 0.5rem 1rem;
    background: #e57373;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Palabra del Año */
.palabra-año-section {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(244, 197, 66, 0.4);
    text-align: center;
}

.palabra-año-section input {
    width: 80%;
    max-width: 400px;
    padding: 1.2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border: 3px solid #fff;
    border-radius: 20px;
    margin: 1rem 0;
    text-transform: uppercase;
}

.btn-guardar-palabra {
    padding: 1rem 2.5rem;
    background: #fff;
    border: none;
    border-radius: 20px;
    color: #f4c542;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-guardar-palabra:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.palabra-año-display {
    margin-top: 2rem;
}

.palabra-año-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.palabra-año-card h2 {
    font-size: 4rem;
    color: #f4c542;
    margin: 0 0 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.palabra-año-card p {
    font-size: 1.2rem;
    color: #8b7d7d;
    margin: 0;
}

/* Elementos del Canvas (Vision Board y Collage) */
.canvas-element {
    position: absolute;
    cursor: move;
    user-select: none;
    touch-action: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.foto-element {
    position: relative;
    width: 200px;
    height: 200px;
    background: transparent;
    border: none;
}

.sticker-element {
    background: transparent;
    border: none;
    box-shadow: none;
}

.texto-element {
    background: linear-gradient(135deg, #ffe9f3, #fff);
    padding: 1rem;
    border: 2px solid #f4c542;
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4895b;
    min-width: 150px;
}

.frase-element {
    background: linear-gradient(135deg, #f4c542, #ffd700);
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

/* Botones de control de elementos */
.element-delete-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #e57373;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.element-delete-btn:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.element-resize-btns {
    position: absolute;
    bottom: -12px;
    right: -12px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.element-resize-btn {
    width: 28px;
    height: 28px;
    background: #4caf50;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.element-resize-btn:hover {
    background: #388e3c;
    transform: scale(1.1);
}

.element-resize-btn.minus {
    background: #ff9800;
}

.element-resize-btn.minus:hover {
    background: #f57c00;
}

/* Responsive Vision Board */
@media (max-width: 768px) {
    .año-florezco-title {
        font-size: 1.8rem;
    }
    
    .vision-canvas {
        min-height: 400px;
    }
    
    .agregar-meta-año {
        flex-direction: column;
    }
    
    .palabra-año-card h2 {
        font-size: 2.5rem;
    }
    
    .foto-element {
        width: 150px;
        height: 150px;
    }
}

/* ========================================
   ESTILOS PREMIUM
   ======================================== */

.premium-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-badge-grande {
    display: inline-block;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 197, 66, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.premium-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.premium-descripcion {
    font-size: 1.2rem;
    color: #666;
}

.premium-descripcion strong {
    color: #f4c542;
    font-size: 1.5rem;
}

.premium-beneficios {
    margin-bottom: 3rem;
}

.premium-beneficios h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.beneficio-card {
    background: linear-gradient(135deg, #ffe9f3 0%, #fff 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 212, 229, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 212, 229, 0.5);
}

.beneficio-icono {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.beneficio-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.beneficio-card p {
    font-size: 0.95rem;
    color: #666;
}

.premium-precio-box {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 212, 229, 0.4);
}

.precio-actual {
    margin-bottom: 1rem;
}

.precio-numero {
    font-size: 4rem;
    font-weight: bold;
    color: #f4c542;
}

.precio-periodo {
    font-size: 1.5rem;
    color: #666;
}

.precio-nota {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-hacerse-premium {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.btn-hacerse-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6);
}

.btn-hacerse-premium:active {
    transform: translateY(0);
}

.premium-garantia {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #8b7d7d;
}

.premium-activo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.premium-activo-header {
    text-align: center;
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
}

.corona-animada {
    font-size: 5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.premium-activo-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 1rem 0;
}

.premium-activo-beneficios {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.premium-activo-beneficios h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.lista-beneficios-activos {
    list-style: none;
    padding: 0;
}

.lista-beneficios-activos li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.lista-beneficios-activos li:last-child {
    border-bottom: none;
}

.premium-gestion {
    background: #faf5f0;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.premium-gestion h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.premium-gestion p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-cancelar-premium {
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancelar-premium:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Responsive Premium */
@media (max-width: 768px) {
    .premium-header h2 {
        font-size: 1.5rem;
    }
    
    .precio-numero {
        font-size: 3rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-hacerse-premium {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .corona-animada {
        font-size: 3.5rem;
    }
    
    .premium-activo-header h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MODAL PREMIUM
   ======================================== */

.modal-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.modal-premium-content {
    background: linear-gradient(135deg, #fff 0%, #ffe9f3 100%);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

.modal-premium-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-premium-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 1rem 0;
}

.modal-premium-beneficios {
    margin-bottom: 2rem;
}

.modal-premium-beneficios h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.lista-beneficios-modal {
    list-style: none;
    padding: 0;
}

.lista-beneficios-modal li {
    padding: 0.8rem;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
}

.modal-premium-precio {
    text-align: center;
}

.precio-destacado {
    margin-bottom: 1rem;
}

.btn-hacerse-premium-modal {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
}

.btn-hacerse-premium-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.6);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-premium-content {
        padding: 1.5rem;
    }
    
    .modal-premium-header h2 {
        font-size: 1.5rem;
    }
    
    .precio-numero {
        font-size: 3rem;
    }
    
    .btn-hacerse-premium-modal {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
}

/* ================================
   TARJETA PREMIUM EN MENÚ CATEGORÍAS
   ================================ */

.categoria-premium .categoria-card-premium {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 50%, #f4c542 100%);
    position: relative;
    overflow: hidden;
}

.categoria-premium .categoria-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.premium-badge-categoria {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

/* ================================
   SECCIÓN PREMIUM COMPLETA
   ================================ */

#seccion-premium {
    background: linear-gradient(135deg, #faf5f0 0%, #ffffff 100%);
    min-height: 100vh;
}

.premium-header {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(255, 212, 229, 0.3);
    margin-bottom: 2rem;
}

.premium-badge-grande {
    display: inline-block;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
    margin-bottom: 1rem;
    border: 2px solid white;
}

.premium-titulo {
    font-size: 2.5rem;
    color: #333;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.premium-subtitulo {
    font-size: 1.2rem;
    color: #8b7d7d;
    margin-bottom: 2rem;
}

.premium-precio-hero {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.premium-precio-hero .precio-numero {
    font-size: 4rem;
    font-weight: bold;
    color: #f4c542;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.premium-precio-hero .precio-periodo {
    font-size: 1.5rem;
    color: #8b7d7d;
}

.premium-nota {
    font-size: 1rem;
    color: #8b7d7d;
    font-style: italic;
}

/* Funciones Premium */
.premium-funciones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.funcion-premium-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.funcion-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd4e5 0%, #f4c542 100%);
}

.funcion-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.3);
}

.funcion-destacada {
    border: 3px solid #f4c542;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.funcion-icono {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.funcion-titulo {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.funcion-descripcion {
    font-size: 1rem;
    color: #8b7d7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.funcion-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 1rem;
}

.funcion-beneficio {
    display: inline-block;
    background: #ffd4e5;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.premium-cta-section {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe9f3 100%);
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.premium-cta-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(244, 197, 66, 0.3);
    text-align: center;
}

.premium-cta-card h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-descripcion {
    font-size: 1.1rem;
    color: #8b7d7d;
    margin-bottom: 2rem;
}

.precio-destacado-cta {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.precio-destacado-cta .precio-numero {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f4c542;
}

.precio-destacado-cta .precio-periodo {
    font-size: 1.3rem;
    color: #8b7d7d;
}

.btn-hacerse-premium-grande {
    background: linear-gradient(135deg, #f4c542 0%, #ffd700 100%);
    color: #333;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(244, 197, 66, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto;
    display: block;
}

.btn-hacerse-premium-grande:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 197, 66, 0.6);
}

.btn-hacerse-premium-grande:active {
    transform: translateY(0);
}

.premium-garantias {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.garantia-item {
    font-size: 0.95rem;
    color: #8b7d7d;
}

/* FAQ Premium */
.premium-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.premium-faq h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #8b7d7d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Premium */
@media (max-width: 768px) {
    .premium-titulo {
        font-size: 1.8rem;
    }
    
    .premium-precio-hero .precio-numero {
        font-size: 3rem;
    }
    
    .premium-funciones-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .funcion-premium-card {
        padding: 1.5rem;
    }
    
    .premium-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-hacerse-premium-grande {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}
