*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background:#f8fafc;
    color:#1f2937;
}
/* CONTENEDOR */
.anuncios{
    width:100%;
    padding:90px 8%;
}
/* TITULO */
.titulo{
    text-align:center;
    margin-bottom:60px;
}
.titulo h1{
    font-size:48px;
    font-weight:800;
    color:#005ca8;
}
.titulo p{
    max-width:800px;
    margin:15px auto 0;
    font-size:18px;
    color:#64748b;
}
/* GALERIA */
.galeria-anuncios{
    display:grid;
    grid-template-columns: 1fr;
    gap:35px;
    align-items:start;
    max-width:800px;
    margin:0 auto;
}
.fb-page-wrap{
    display:flex;
    justify-content:center;
    max-width:500px;
    margin:0 auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.fb-page-wrap .fb-page,
.fb-page-wrap iframe{
    width:100% !important;
}
/* TARJETAS */
.anuncio-card{
    background:white;
    border-radius:28px;
    padding:20px;
    overflow:hidden;
    box-shadow:
    0 15px 40px rgba(0,0,0,.10);
    transition:.35s;
}
/* POSICIONES (ya no aplican columnas distintas) */
.anuncio-card.vertical,
.anuncio-card.horizontal{
    grid-column: auto;
}
.anuncio-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 60px rgba(0,0,0,.18);
}
/* IMAGEN */
.anuncio-card img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    object-fit:cover;
}
/* INFORMACIÓN */
.anuncio-info{
    padding:25px 10px 10px;
    text-align:center;
}
.anuncio-info h3{
    font-size:24px;
    font-weight:700;
    color:#005ca8;
    margin-bottom:10px;
}
.anuncio-info p{
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}
/* LINEA DECORATIVA */
.anuncio-card::after{
    content:"";
    display:block;
    height:5px;
    margin-top:20px;
    border-radius:10px;
    background:linear-gradient(
        90deg,
        #005ca8,
        #176c22
    );
}
/* TABLET */
@media(max-width:1000px){
    .galeria-anuncios{
        grid-template-columns:1fr;
    }
    .anuncio-card.vertical,
    .anuncio-card.horizontal{
        grid-column:auto;
    }
}
/* CELULAR */
@media(max-width:600px){
    .anuncios{
        padding:50px 20px;
    }
    .titulo h1{
        font-size:34px;
    }
    .titulo p{
        font-size:15px;
    }
    .anuncio-card{
        padding:15px;
    }
}