/* ===========================
   Estilos Globales
   =========================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    margin: 0;
    background: #ffe6f0; /* fondo rosa suave */
    color: #333;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5em;
    color: #d63384; /* rosa intenso */
}

p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #6a1b4d; /* rosa oscuro suave */
}

/* ===========================
   Contenedor de Modelos
   =========================== */
#models-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ===========================
   Tarjetas de Modelos
   =========================== */
.model-card {
    background: #ffd9e8; /* rosa suave */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.model-card h2 {
    margin-top: 0;
    color: #d63384; /* rosa intenso */
    font-size: 1.5em;
}

.model-card p {
    color: #6a1b4d; /* rosa oscuro suave */
}

.model-card a {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
    color: #d63384; /* rosa intenso */
    border: 2px solid #d63384;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.model-card a:hover {
    background: #d63384;
    color: #fff;
}

/* ===========================
   Responsive Mobile
   =========================== */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    h1 {
        font-size: 2em;
    }
    .model-card {
        padding: 15px;
    }
}

