
/* ------------------------------------------------------------
   ESTILOS EXCLUSIVOS PARA LA PÁGINA "AstroMitos"
   (No afectan al resto del sitio)
   ------------------------------------------------------------ */
.hero {
    text-align: center;
    padding: 2rem 1rem 3rem;
    border-bottom: 2px solid var(--md-accent-fg-color);
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--md-accent-fg-color), var(--md-default-fg-color--light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 1.2rem;
    color: var(--md-default-fg-color--light);
    margin-bottom: 1rem;
}
.astromitos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.astro-card {
    background: rgba(30, 27, 75, 0.6); /* fondo semitransparente oscuro con tono lila */
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid var(--md-accent-fg-color);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.astro-card:hover {
    transform: translateY(-5px);
    border-color: var(--md-accent-fg-color--light);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.badge {
    display: inline-block;
    background: var(--md-accent-fg-color);
    color: white;
    border-radius: 40px;
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 0.5rem;
}
.highlight-myth {
    background: linear-gradient(120deg, #2d1b4e, #1a0f2e);
    border-radius: 32px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    text-align: center;
    border: 1px solid var(--md-accent-fg-color);
}
.myth-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}
.myth-item {
    background: rgba(244, 114, 182, 0.2);
    border-radius: 24px;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(2px);
}
.catalog-list {
    columns: 2;
    list-style: none;
    text-align: center;
    margin: 1rem 0;
}
.catalog-list li {
    margin: 0.3rem 0;
}
.btn-container {
    text-align: center;
    margin: 2rem 0;
}
.btn-carta {
    display: inline-block;
    background: var(--md-accent-fg-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-carta:hover {
    background: var(--md-accent-fg-color--light);
    transform: scale(1.02);
    color: #1e1b4b;
}
.footer-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--md-default-fg-color--lighter);
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .catalog-list { columns: 1; }
}
