.img-fluid{
  border-radius: 20px;
}

.img-fluid-hero{
  height: 90%;
}

.btn-custom {
  background: rgba(255, 255, 255, 1); /* Fondo blanco */
  color: #121212; /* Texto negro */
  padding: 10px 26px;
  margin: 10px;
  border-radius: 100px; /* Bordes redondeados */
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease; /* Transición suave */
}


.btn-custom:hover {
  background: linear-gradient(180deg, rgba(233, 149, 73, 1), rgba(244, 91, 83, 1)); /* Fondo gradiente */
  color: #ffffff; /* Texto blanco */
  opacity: 1; /* Asegúrate de que no se desvanezca */
  transition: all 0.3s ease;
}

/* Asegúrate de que el texto interno también cambie */
.btn-custom:hover span {
  color: #ffffff !important; /* Cambia el color del texto interno a blanco */
  transition: all 0.3s ease;
}


.gradienteindex {
  position: relative;
  z-index: 0; /* Esto crea un contexto de apilamiento */
  padding-left: 98px;
  padding-right: 98px;
  padding-top: 60px;
  border-radius: 30px;
  overflow: hidden;
}

.gradienteindex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%; /* Ajusta la altura según necesites */
  background: linear-gradient(180deg, rgba(233,149,73,1), rgba(244,91,83,1));
  border-radius: 30px;
  z-index: -1; /* Se ubica detrás del contenedor (.gradienteindex) */
}


.titulo_hero{
  color: #231E1B;
  font-style:normal;
  font-weight: bolder;
  line-height: 110%;
}

.texto_hero{
  color: rgba(0,0,0,1);
  text-align: left;
}

.btn1-custom {
  background: rgba(255, 255, 255, 1); /* Fondo blanco */
  color: #121212; /* Texto negro */
  padding: 16px 32px;
  margin: 10px;
  border-radius: 100px; /* Bordes redondeados */
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Transición suave */
}

.btn1-custom:hover {
  color: #ffffff; /* Texto blanco */
  border-color: white; /* Borde con color del gradiente */
}

.btn1-custom:hover span {
  color: #ffffff !important; /* Cambia el color del texto interno a blanco */
  transition: all 0.3s ease;
}

.btn2-custom { /* Fondo inicial */
  color: #ffffff; /* Texto blanco */
  padding: 16px 32px;
  margin: 10px;
  border-radius: 100px; /* Bordes redondeados */
  font-weight: bold;
  text-align: center;
  border: 1px solid #000000;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Transición suave */
}

.btn2-custom:hover {
  color: rgb(0, 0, 0); /* Texto del color del borde */
  border-color: rgb(0, 0, 0); /* Mantén el borde del color inicial */
}

.btn2-custom:hover span {
  color: #000000 !important; /* Cambia el color del texto interno a blanco */
  transition: all 0.3s ease;
}




.text-primary {
  color: #121212 !important;
  top: 16px;
  left: 32px;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600; /* 'SemiBold' es equivalente a 600 en CSS */
  font-size: 16px;
  text-align: center;
}

.btn2-custom {
  border-color: #ffffff;
  width: 193px;
  height: 54px;
  padding: 16px 32px;
  margin: 10px;
  top: 0;
  left: 200px;
  border-radius: 100px;
  overflow: hidden;
}

.text-secondary {
  color: #ffffff !important;
  top: 16px;
  left: 32px;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.opaco{
  color: #757575;
  font-weight: bold;
}

.card-img-top{
  border-radius: 20px;
}

.margen-1{
  padding-top: 25px;
}
.margen-2{
  padding-bottom: 25px;
}

.beneficio {
  width: 200px; /* Ancho fijo */
  height: 100px; /* Alto fijo */
  border-radius: 20px;
  border: 1px solid #ffffff; /* Borde */
  display: flex;
  flex-direction: column; /* Organiza los elementos verticalmente */
  align-items: center;
  justify-content: center;
  margin: 20px; /* Espaciado entre columnas */
}

.gradient-line {
  width: 40px;
  height: 4px;
  background: linear-gradient(rgba(244,91,83,1), rgba(233,149,73,1));
  margin: 5px auto;
}

.marcas{
    display: flex;
    flex-direction: column;  /* Esto coloca los spans uno encima del otro */
    justify-content: center; /* Esto centra los elementos verticalmente */
    align-items: center;     /* Esto centra los elementos horizontalmente */
    height: 100%;            /* Asegúrate de que la columna tenga una altura definida para centrar verticalmente */
}


.card-img {
  width: 100%;
  height: 400px; 
  object-fit:cover;
  border: none;
  border-radius: 20px;
}