/* Estilo general */
body {
    margin: 0;
    font-family: 'Comic Sans MS', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff7e6;
    color: #444;
}

/* Cabecera */
header {
    background: linear-gradient(90deg, #ffb6c1, #ff9ec4);
    padding: 15px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
    font-size: 26px;
}

header p {
    margin: 0;
    font-size: 14px;
}

/* Menú */
nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* Contenido principal */
main {
    padding: 20px;
}

/* Sección hero */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: #ffe4e1;
    margin-top: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hero h2 {
    margin-top: 0;
    font-size: 28px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Botón */
.btn {
    display: inline-block;
    margin-top: 5px;
    padding: 10px 20px;
    background: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s, transform 0.1s;
}

.btn:hover {
    background: #ff1493;
    transform: translateY(-1px);
}

/* Bloques generales */
.block {
    padding: 40px 20px;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.block.soft {
    background: #ffeef5;
}

/* Tarjetas de historias */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-align: left;
}

.card h3 {
    margin-top: 0;
    color: #ff69b4;
}

/* Vídeos */
.video-grid {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Contacto */
.email {
    font-weight: bold;
    font-size: 18px;
    color: #ff69b4;
}

.note {
    font-size: 12px;
    color: #777;
}

/* Pie de página */
footer {
    background: #ffb6c1;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    color: white;
    font-size: 14px;
}

/* --- ICONOS MATRIX (NUEVOS) --- */
.icon-matrix {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 10px auto;
    box-shadow: 0 0 10px rgba(0,255,0,0.4);
    background: #000;
    padding: 8px;
}

.icon-matrix.small {
    width: 50px;
    height: 50px;
}

.icon-matrix.large {
    width: 120px;
    height: 120px;
}

.card .icon-matrix {
    margin-bottom: 15px;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 700px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav a {
        margin-left: 0;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}
