/* =================================
   HERO ATENCIÓN A LLAMADAS
================================= */

.custom-jumbotron {

  background-image: url("../atencion/fondollamada.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 12px;

  padding: 60px 40px;

  margin-top: 20px;

  /* FIX elimina espacio blanco inferior */
  margin-bottom: 0;

}


/* =================================
   CONTENEDOR FLEX HERO
================================= */

.hero-container {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  width: 100%;

}


/* =================================
   CONTENIDO TEXTO HERO
================================= */

.content {

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(6px);

  padding: 30px;

  border-radius: 12px;

  max-width: 650px;

  width: 100%;

  color: white;

}


/* =================================
   TITULO HERO
================================= */

.custom-jumbotron h1 {

  font-weight: 600;

  margin-bottom: 15px;

  font-size: 48px;

  text-align: left;

}


/* =================================
   TEXTO HERO
================================= */

.custom-jumbotron p {

  font-size: 17px;

  line-height: 1.6;

  text-align: left;

}


/* =================================
   CARD INFORMATIVA DERECHA
================================= */

.info-card {

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(10px);

  padding: 25px;

  border-radius: 12px;

  max-width: 320px;

  width: 100%;

  color: white;

  box-shadow: 0 15px 35px rgba(0,0,0,0.4);

}


/* LISTA */

.info-card ul {

  list-style: none;

  padding: 0;

}

.info-card li {

  margin-bottom: 10px;

}


/* =================================
   SECCIÓN BENEFICIOS ATENCIÓN
================================= */

.beneficios-atencion {

  background: #2c2f36;

  padding: 80px 20px;

  margin-top: 0; /* FIX elimina espacio blanco */

}


/* =================================
   CONTENEDOR CENTRADO
================================= */

.beneficios-container {

  max-width: 1200px;

  margin: auto;

  text-align: center;

}


/* =================================
   TITULO
================================= */

.beneficios-titulo {

  color: white;

  font-size: 32px;

  margin-bottom: 50px;

  font-weight: 600;

}


/* =================================
   GRID BENEFICIOS
================================= */

.beneficios-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

}


/* =================================
   CARD BENEFICIO
================================= */

.beneficio-card {

  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(10px);

  padding: 30px 20px;

  border-radius: 12px;

  color: white;

  transition: 0.3s;

  border: 1px solid rgba(255,255,255,0.08);

}


/* =================================
   EFECTO HOVER
================================= */

.beneficio-card:hover {

  transform: translateY(-8px);

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

}


/* =================================
   ICONO BENEFICIO
================================= */

.beneficio-icono {

  font-size: 30px;

  color: #00c853;

  margin-bottom: 15px;

}


/* =================================
   TITULO CARD
================================= */

.beneficio-card h4 {

  margin-bottom: 10px;

  font-weight: 600;

}


/* =================================
   TEXTO CARD
================================= */

.beneficio-card p {

  font-size: 15px;

  opacity: 0.9;

}


/* =================================
   RESPONSIVE CELULAR — FIX COMPLETO
================================= */

@media (max-width: 768px) {


  /* HERO EN COLUMNA */

  .hero-container {

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

  }


  /* HERO CONTENEDOR */

  .custom-jumbotron {

    padding: 40px 20px;

  }


  /* TEXTO HERO */

  .content {

    max-width: 100%;

    width: 100%;

    text-align: left;

    padding: 20px;

  }


  /* TITULO HERO RESPONSIVE */

  .custom-jumbotron h1 {

    font-size: 28px;

    line-height: 1.2;

    text-align: left;

    width: 100%;

  }


  /* TEXTO HERO RESPONSIVE */

  .custom-jumbotron p {

    font-size: 16px;

    text-align: left;

    width: 100%;

  }


  /* CARD HERO */

  .info-card {

    max-width: 100%;

    width: 100%;

  }


  /* BENEFICIOS GRID CELULAR */

  .beneficios-grid {

    grid-template-columns: 1fr;

  }


  /* CENTRAR TEXTO DE CARDS EN CELULAR */

  .beneficio-card {

    text-align: center;

  }

}


/* =================================
   PROTECCIÓN GLOBAL
================================= */

html, body {

  overflow-x: hidden;

}
