.anunciate {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2aa7d6, #43d1c6);
  text-align: center;
}

.anunciate h2 {
  color: white;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
.anunciate-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.anunciate-box:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.anunciate-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* CONTENEDOR */
.anunciate-box {
 
  margin: auto;
background: url('/images/background.png') no-repeat center;
background-size: cover;
  border-radius: 40px;
  padding: 40px;

  display: flex;
  align-items: center;
  gap: 40px;
position: relative; 
  box-shadow: 12px 12px 0 #0b1f4b;
   max-width: 690px;
}
.anunciate-img {
  position: relative;
}

/* IMAGEN */
.anunciate-img img {

  border-radius: 25px;
  position: relative;
  top: -40px;   /* 👈 aquí se eleva */
}
/* IMAGEN */
.anunciate-img img {
  width: 380px;
  border-radius: 25px;
  display: block;
}

/* TEXTO */
.anunciate-content {
  text-align: left;
  color: white;
}

.anunciate-content ul {
  list-style: none;
  padding: 0;
}

.anunciate-content li {
  margin-bottom: 20px;
  font-size: 30px;
  position: relative;
  padding-left: 40px; /* espacio para el icono */
}

/* ICONO */
.anunciate-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;

  width: 22px;
  height: 22px;

  background: url('/images/check.png') no-repeat center;
  background-size: contain;
}

@media (max-width: 768px) {
  .anunciate-box {
    flex-direction: column;
    text-align: center;
  }

  .anunciate-content {
    text-align: center;
  }

  .anunciate-content li {
    padding-left: 0;
  }

  .anunciate-content li::before {
    display: none;
  }
}

.anunciate-wrapper{

  max-width:1400px;

  margin:auto;

  display:grid;

  grid-template-columns:160px 1fr 160px;

  gap:30px;

  align-items:center;

}

.ad-banner{

  width:160px;

  height:600px;

  border-radius:20px;

  overflow:hidden;

}

.ad-banner img{

  width:100%;

  height:100%;

  object-fit:cover;

  display:block;

}
/* =========================================================
   POR QUÉ ANUNCIARTE - MÓVIL
========================================================= */
/* =========================================================
   ANÚNCIATE - MÓVIL
========================================================= */

@media (max-width: 768px){

  .anunciate{
    padding:45px 15px 50px;
    overflow:hidden;
  }

  /* TÍTULO */
  .anunciate h2{
    font-size:28px;
    line-height:1.15;
    font-weight:600;

    margin:0 auto 28px;

    max-width:330px;

    text-align:center;
  }


  /* OCULTAR BANNERS LATERALES */
  .ad-banner{
    display:none;
  }


  /* CONTENEDOR */
  .anunciate-wrapper{
    display:block;

    width:100%;
    max-width:360px;

    margin:0 auto;
  }


  /* TARJETA */
  .anunciate-box{

    width:100%;
    max-width:360px;

    box-sizing:border-box;

    margin:0 auto;

    padding:24px 20px;

    border-radius:22px;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:15px;

    box-shadow:8px 8px 0 #0b1f4b;

    text-align:center;
  }


  /* IMAGEN */
  .anunciate-img{
    width:100%;

    display:flex;
    justify-content:center;

    position:relative;
  }

  .anunciate-img img{

    width:180px;
    max-width:65%;

    height:auto;

    display:block;

    position:relative;

    top:0;

    border-radius:18px;
  }


  /* TEXTO */
  .anunciate-content{

    width:100%;

    text-align:center;
  }


  .anunciate-content ul{

    margin:5px 0 0;

    padding:0;

  }


  .anunciate-content li{

    margin-bottom:12px;

    padding-left:0;

    font-size:15px;

    line-height:1.35;

    text-align:center;
  }


  /* OCULTAR CHECK DESKTOP */
  .anunciate-content li::before{
    display:none;
  }

}


/* =========================================================
   TELÉFONOS PEQUEÑOS
========================================================= */

@media (max-width:380px){

  .anunciate{
    padding:38px 12px 42px;
  }

  .anunciate h2{
    font-size:25px;

    max-width:310px;

    margin-bottom:23px;
  }

  .anunciate-wrapper{
    max-width:340px;
  }

  .anunciate-box{
    max-width:340px;

    padding:20px 16px;

    border-radius:20px;

    box-shadow:7px 7px 0 #0b1f4b;
  }

  .anunciate-img img{
    width:155px;
    max-width:60%;

    border-radius:16px;
  }

  .anunciate-content li{
    font-size:14px;
    margin-bottom:10px;
  }

}