/* Paleta de Colores Claros */
:root {
    --bg: #f8f9fc;          /* Fondo general muy claro */
    --card-bg: #ffffff;      /* Fondo de tarjetas blanco puro */
    --accent-color: #007bff; /* Azul vibrante profesional */
    --text-main: #2d3436;    /* Gris muy oscuro para lectura */
    --text-dim: #636e72;     /* Gris medio para descripciones */
    --border-color: #e1e8ed; /* Bordes sutiles */
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.user-info p {
    color: var(--text-dim);
    margin: 5px 0;
}

/* --- SEPARACIÓN POR CATEGORÍAS --- */

.category-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 35px;
}

/* --- GRID Y TARJETAS --- */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    border-color: var(--accent-color);
}

/* --- IFRAME (VISTA PREVIA) --- */

.iframe-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f2f5; /* Fondo de carga */
    border-bottom: 1px solid var(--border-color);
}

iframe {
    width: 1280px;
    height: 800px;
    border: none;
    transform: scale(0.25);
    transform-origin: 0 0;
    pointer-events: none;
}

.overlay-prevent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
}

/* --- CONTENIDO DE TARJETA --- */

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.card-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 25px;
    height: 3rem; /* Alinea los botones aunque el texto varíe */
    overflow: hidden;
}

/* --- BOTÓN ESTILIZADO --- */

.btn-link {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-link:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    header h1 { font-size: 2rem; }
    .grid-container { grid-template-columns: 1fr; }
}