body {
font-family: Inter, sans-serif;
color: #000;
background-color: #fff;
font-size: 16px;
}

.fortinet-red {
color: #DA281C;
}
.bg-fortinet {
background-color: #DA281C;
}

/*== HEADER ===*/
header{
  position: relative;
  z-index: 1;
}
.sombra-inferior {
    /* x-offset | y-offset | blur-radius | spread-radius | color */
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

/*== SECCION HERO ==*/

.hero {
    position: relative;
    width: 100%;
    height: auto; 
    min-height: 400px; 
    background-image: url('../images/bg-certificacion-liderazgo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    overflow: hidden;
    z-index:0;

}



/* Ajustes para pantallas pequeñas */
@media (max-width: 767px) {
    .hero{
      margin-top: -1px;
    }
    .hero-banner {
        height: 45vh; 
        justify-content: center; 
    }


}
/*==FIN SECCION HERO ==*/



/* ── SECCION ICONOS ── */

.info-item {
    display: flex;
    align-items: center;
    /* Esto alinea el inicio del item con el container de Bootstrap */
    padding-left: calc((100vw - 1320px) / 2); 
    margin-bottom: 40px;
}



.info-icon{
  position:absolute;
  width:110px;
  height:110px;
  background:#fff;
  border:15px solid #DA281C;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}

.info-icon i{
  font-size:30px;
  color:#e30613;
}

.info-franja{
  background:#82E2FF;
  height: 100px;
  padding:0px 40px 0px 80px;
  width:100%;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.info-text{
  font-size:22px;
  position: relative;
  z-index: 1;       
  font-size: 20px;  

}
.info-text strong {
  font-weight: 700;
  display: block;
}


.info-section{
  padding:0;
}

.info-section .row {
  align-items: stretch;
}

.info-image {
  height: 100%;
}

.info-image img{
  width:100%;
  min-height:500px;
  object-fit:cover;
  border-top-right-radius:100px;
  border-bottom-right-radius:100px;
  box-shadow:0 10px 10px rgba(0,0,0,0.2);
}

.info-right{
  padding:60px 0px;
}

/* Para pantallas más chicas, hay que ajustar el cálculo */
@media (max-width: 1399.98px) {
    .info-item { padding-left: calc((100vw - 1140px) / 2); }
}
@media (max-width: 1199.98px) {
    .info-item { padding-left: calc((100vw - 960px) / 2); }
}
@media (max-width: 991.98px) {
    .info-item { padding-left: calc((100vw - 720px) / 2); }
}




@media (max-width: 767.98px) {
   .info-list {
      margin: 32px 0;
    }
  .info-icon {
    width: 80px;
    height: 80px;
    border: 8px solid #e30613;
    flex-shrink: 0;
  }

  .info-icon svg {
    width: 22px;
    height: 22px;
  }

  .info-franja {
    height: 80px;

    width:90%;
    padding:0px 0px 0px 60px;

  }

  .info-text {
    font-size: 12px;
  }

  .info-text strong {
    font-size: 12px;
  }

  .info-image img{

    box-shadow:none;
  }
  .info-item { padding-left: 20px; } /* En móvil ya no hay container ancho */  

}

@media (max-width:991px){

  .info-image img{
    border-radius:20px;
  }

.info-right {
   padding: 0; 
}

}



/* Formulario */
.formulario{
  position: relative;
}


.btn-fortinet:hover {
  background-color: #c1000f;
  color: #fff;
}
.formulario h5 {
  font-size: 22px;
  font-weight: 700;
}

.form-decoration{
  position: absolute;
  bottom: -10px;    
  left: -100px;  
  width: 400px; 
  height: auto;
  z-index: -1;   
  pointer-events: none;   
}

.form-control{
  border:none;
  border-bottom:2px solid #cfcfcf;
  border-radius:0;
  background:transparent;
  padding-left:0;
}

.form-control:focus{
  outline:none;
  box-shadow:none;
  border-bottom:2px solid #e30613; /* rojo Fortinet */
}

form label {
  font-size: 20px;
}

@media (max-width:991px){
  .formulario{
    padding:5px 30px !important;
  }
}


