      <!-- ========== ESTILOS ========== -->
        * { box-sizing: border-box; }
        body { 
            font-family: 'Cormorant Garamond', serif; 
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8f0 100%);
            margin: 0; 
            padding: 0; 
            min-height: 100vh;
        }
        .container { 
            max-width: 600px; 
            margin: 0 auto; 
            padding: 15px; 
        }
        h1 { 
            text-align: center; 
            color: #5d3a8c; 
            font-size: 1.8rem;
            margin: 20px 0 10px;
            font-weight: 700;
        }
        h2 {
            text-align: center;
            color: #5d3a8c;
            font-size: 1.3rem;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        .fecha-actual {
            text-align: center;
            color: #666;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .signo-card {
            background: white; 
            border-radius: 12px; 
            padding: 18px; 
            margin: 12px 0;
            box-shadow: 0 4px 12px rgba(93,58,140,0.1);
            border-left: 4px solid #d4af37;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .signo-card:hover, .signo-card:active {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(93,58,140,0.15);
        }
        .signo-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .signo-icono { font-size: 1.8rem; }
        .signo-titulo { 
            font-size: 1.4rem; 
            color: #5d3a8c;
            font-weight: 700;
        }
        .signo-texto {
            font-size: 1rem;
            color: #333;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .leer-mas {
            color: #d4af37;
            font-weight: bold;
            font-size: 0.9rem;
            margin-top: 10px;
            display: inline-block;
        }
        .signo-ver-todos {
            background: linear-gradient(90deg, #5d3a8c, #d4af37);
            color: white;
            padding: 15px 30px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            display: block;
            text-align: center;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .filtro-fecha {
            text-align: center;
            margin: 15px 0;
        }
        .filtro-fecha input {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-family: inherit;
            font-size: 1rem;
        }
        .sin-horoscopo {
            text-align: center;
            padding: 40px 20px;
            color: #888;
            font-size: 1.1rem;
        }
        .intro-seo {
            background: rgba(255,255,255,0.7);
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #444;
        }
        .intro-seo h2 {
            font-size: 1.2rem;
            margin-top: 0;
        }
        .lista-signos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
            margin: 20px 0;
        }
        .lista-signos a {
            background: white;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            color: #5d3a8c;
            font-weight: 600;
            border: 1px solid #e0e0e0;
            transition: 0.3s;
        }
        .lista-signos a:hover {
            background: #5d3a8c;
            color: white;
            border-color: #5d3a8c;
        }
        .footer {
            background: linear-gradient(to right, #5d3a8c, #3a2457);
            color: white;
            text-align: center;
            padding: 25px 15px;
            margin-top: 40px;
            border-top: 3px solid #d4af37;
        }
        .footer a {
            color: #ffd700;
            text-decoration: none;
            font-weight: bold;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
            font-size: 0.9rem;
        }
        #btn-subir {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: #5d3a8c;
            color: white;
            border: 2px solid #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 999;
        }
        #btn-subir.visible {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 480px) {
            .container { padding: 10px; }
            h1 { font-size: 1.5rem; }
            .signo-titulo { font-size: 1.2rem; }
            .signo-texto { font-size: 0.95rem; }
            .signo-card { padding: 15px; }
            .lista-signos { grid-template-columns: repeat(3, 1fr); }
        }

 /* Banner Reflexiones Diarias */
        .reflexiones-banner {
            background: linear-gradient(135deg, #6a4c93 0%, #8a65b5 100%);
            color: white;
            padding: 14px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(93,58,140,0.25);
            transition: transform 0.2s, box-shadow 0.2s;
            font-size: 1rem;
            text-align: center;
            line-height: 1.3;
        }
        .reflexiones-banner:hover, .reflexiones-banner:active {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(93,58,140,0.35);
            color: white;
        }
        .reflexiones-icono { font-size: 1.4rem; }
        .reflexiones-texto strong { color: #ffd700; }
        .reflexiones-arrow { 
            font-size: 1.2rem; 
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(3px); }
        }
        @media (max-width: 480px) {
            .reflexiones-banner { 
                flex-direction: column; 
                gap: 6px;
                padding: 12px 15px;
                font-size: 0.95rem;
            }
            .reflexiones-arrow { display: none; }
        }

.reflexiones-banner small {
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
}
@media (max-width: 480px) {
    .reflexiones-banner small {
        font-size: 0.8rem;
    }
}