body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', 'Poppins', serif;
    background: radial-gradient(circle at top, #fff0f3, #f8c8dc, #f2a1c7);
    color: #3a1c24;
}

/* ====== TÍTULO PRINCIPAL ====== */
h1 {
    text-align: center;
    margin: 50px 0;
    font-size: 48px;
    color: #a4133c;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px #ffb3c6,
        0 0 10px #ff8fab,
        0 0 20px rgba(255, 143, 171, 0.8);
}

/* ====== TABLA ====== */
table {
    width: 85%;
    margin: auto;
    border-spacing: 40px;
}

/* ====== TARJETAS ====== */
td {
    background: linear-gradient(145deg, #fff5f8, #ffe0ec);
    padding: 30px;
    border-radius: 25px;
    box-shadow:
        0 10px 30px rgba(164, 19, 60, 0.35),
        inset 0 0 15px rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ✨ brillo glam */
td::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s;
}

td:hover::before {
    opacity: 1;
}

td:hover {
    transform: scale(1.03);
    box-shadow:
        0 20px 45px rgba(164, 19, 60, 0.55),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ====== SUBTÍTULOS ====== */
h2 {
    font-size: 28px;
    color: #c9184a;
    margin-bottom: 18px;
    position: relative;
}

h2::after {
    content: " 💄";
}

/* ====== TEXTO ====== */
p {
    font-size: 16.5px;
    line-height: 1.9;
    text-align: justify;
}

/* ====== IMÁGENES ====== */
img {
    width: 100%;
    max-width: 320px;
    border-radius: 30px;
    display: block;
    margin: auto;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.35),
        0 0 25px rgba(255, 143, 171, 0.7);
    transition: all 0.5s ease;
}

img:hover {
    transform: scale(1.12) rotate(-1deg);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 40px rgba(255, 143, 171, 0.9);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    table, tr, td {
        display: block;
        width: 100%;
    }

    td {
        margin-bottom: 35px;
    }

    h1 {
        font-size: 34px;
    }
}