body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff0f6; /* rosa muy suave */
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #ff66b2;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.productos-fundas {
    padding: 20px;
    text-align: center;
}

.funda {
    background: #fff;
    border: 2px solid #ff99cc;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    display: inline-block;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 153, 204, 0.3);
    transition: transform 0.3s ease;
}

.funda:hover {
    transform: translateY(-5px);
}

.funda h3 {
    margin: 10px 0;
    color: #ff66b2;
}

.imagen-funda {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagen-funda:hover {
    transform: scale(1.05); /* zoom suave */
    box-shadow: 0 8px 15px rgba(255, 102, 178, 0.4); /* sombra rosada */
}

.regreso {
    text-align: center;
    margin: 30px 0;
}

.boton-regreso {
    background: #ff66b2;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.boton-regreso:hover {
    background: #fff;
    color: #ff66b2;
    border: 2px solid #ff66b2;
}

footer {
    background: #ff66b2;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* Galería tipo slider compacta */
.galeria {
    width: 90%;
    max-width: 800px;
    overflow: hidden;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 102, 178, 0.3);
    background: #fff;
    padding: 15px;
    position: relative;
}

/* Estilos generales para anuncios */
.anuncios {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(255, 102, 178, 0.3);
    position: relative;
    height: 300px;  
    display: flex;
    align-items: center;
    justify-content: center;
}

.anuncio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    animation: fadeIn 1s ease;
}

/* Ajuste solo para la segunda imagen */
#anuncio2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #fff0f6;
}

.boton-encargar {
    display: inline-block;
    margin-top: 10px;
    background: #ff66b2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.boton-encargar:hover {
    background: #fff;
    color: #ff66b2;
    border: 2px solid #ff66b2;
}

/* ✅ Responsive para pantallas pequeñas */
@media (max-width: 600px) {
    .funda {
        display: block;       /* cada funda ocupa toda la fila */
        width: 90%;           /* ancho casi completo en móvil */
        margin: 15px auto;
    }

    .funda h3 {
        font-size: 16px;
    }

    .boton-encargar,
    .boton-regreso {
        display: block;
        width: 90%;           /* botones grandes y centrados */
        margin: 15px auto;
        font-size: 15px;
    }

    .imagen-funda {
        max-width: 100%;
    }

    footer {
        font-size: 14px;
        padding: 10px;
    }
}