* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #01534c;
  --secondary-color:#33a238;
  --third-color:#ffde59;
  --primary-light-color:#015323;
  --gradiente-color1:#01534c;
  --gradiente-color2:#33a238;
  --gradiente-color3:#01534c;

            --success-color: #f8f9fa;
            --error-color: #ef476f;
            --text-color: #2b2d42;
            --text-white:#ffffff;
            --bg-color: #027d6d;
            --input-bg: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --gray-color: #e8e4e4;
}

/* body {
  font-family: 'Roboto', sans-serif;
} */

/* body {
  font-family: 'Inter', sans-serif;
} */

/* body {
  font-family: 'Lato', sans-serif;
} */

body {
  font-family: 'DM Sans', sans-serif !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600'%3E%3Crect width='100%25' height='100%25' fill='%23027d6d'/%3E%3Cdefs%3E%3Cpattern id='hexagonPattern' x='0' y='0' width='100' height='173.2' patternUnits='userSpaceOnUse'%3E%3Cpolygon points='50,0 100,28.9 100,86.6 50,115.5 0,86.6 0,28.9' fill='none' stroke='%23029a87' stroke-width='2' opacity='0.3'/%3E%3Cpolygon points='50,57.7 100,86.6 100,144.3 50,173.2 0,144.3 0,86.6' fill='none' stroke='%23029a87' stroke-width='2' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hexagonPattern)'/%3E%3ClinearGradient id='topGradient' x1='0%25' y1='0%25' x2='0%25' y2='40%25'%3E%3Cstop offset='0%25' stop-color='%2302b8a2' stop-opacity='0.7'/%3E%3Cstop offset='100%25' stop-color='%23027d6d' stop-opacity='0'/%3E%3C/linearGradient%3E%3Crect width='100%25' height='300' fill='url(%23topGradient)'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;

  
}
/* body {
  font-family: 'Poppins', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
} */



h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}



.main{

  width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    /* padding: 20px 200px; */
    padding: 0 20px;
    color: black;
    transition: all 0.3s ease;
    position: fixed;
    width: 80%;
    z-index: 300;
    height: 80px;
    border-radius: 0 0 25px 25px;
    /* border: solid 1px var(--primary-color); */
    /* margin-top: 20px; */
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.superitencia-container{
  display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background-color: transparent;
    border-radius: 10px;
    padding: 10px;
}

.logo {
    height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-links li {
    margin: 0 15px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    padding: 0px 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    /* background: linear-gradient(to right, #4CAF50, #1B5E20);  */
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}



.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color:  var(--primary-color); /* Color verde claro al hacer hover */
}

.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--primary-color); /* Color verde claro */
}



.whatsapp-logo {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

.whatsapp-div {
    display: flex;
    gap: 10px;
    justify-content: end;
    transition: all 0.3s ease;
    height: 25px;
}

.whatsapp-div h1 {
    font-size: 18px;
    align-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    justify-content: center;
    height: 25px;
    align-items: center;
}

.whatsapp h2 {
    font-size: 15px;
    font-weight: bold;
}


.whatsapp-li{
    display: none;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    word-spacing: 1px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.logo-text-footer {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  word-spacing: 1px;
  transition: all 0.3s ease;
  color: var(--text-white);
}

.credito {
    text-transform: uppercase;
    text-align: start;
}

.emprendedor {
    text-transform: uppercase;
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
}




@media (max-width:1410px){
  .nav-links a {
    font-size: 14px;
  }
  .logo {
    height: 30px;
  }

}

@media (max-width: 1250px) {
    .navbar {
        width: 100%;
        border-radius: 0px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 75px;
        left: 0;
        text-align: center;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, height 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        height: auto;
        padding: 20px 0;
    }

    .whatsapp {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    .logo-text {
        font-size: 20px;
    }
    .logo {
        height: 40px;
    }

    /* Mostrar WhatsApp en móvil */
    .whatsapp-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .whatsapp-mobile img {
        width: 30px;
    }

    .whatsapp-mobile h1 {
        font-size: 18px;
    }
}

/* PRUEBA*/

.carousel {
    background-color: var(--primary-color);

        
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}
  .carousel-item{
    height: 600px;

  }

  .carousel-div-info{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    padding-left: 10%;
    /* height: 600px; */
    color: white;
    text-align: start;
    
  }
  .carousel-div-info p, .carousel-div-info h1{
    width: 80%;
    
  }
  .carousel-div-info h1{
    font-size: 30px;
    font-weight:900;
  }
  .carousel-div-info p{
    font-size: 20px;
    font-weight: bold;
    
    
  }

.solicita-ahora-button{
    padding: 10px;
    border-radius: 20px 2px 20px 20px;
    background-color: #f5d949;
    color: white !important;
    width: 250px;
    text-align: center;
    text-decoration: none !important;
    font-weight: bold;
}


.carousel-main{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.carousel-div-image, .carousel-div-image-4{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.carousel-div-image img {
    width: 750px;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);

}

.carousel-div-image-4 img {
    height: 200px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
    padding-top: 10px;

}

.carousel-image-info{
    width: 350px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 5px;
}

.carousel-image-info p{
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 10px;
    height: 50px;
    display: flex;
    align-items: center;
}




@media (max-width: 1535px) {
  .carousel-item{
    height: 550px;

  }
 
  .carousel-image-info{
    width: 300px;

}
.carousel-div-image-4 img {
  height: 180px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
  padding-top: 10px;

}
.carousel-image-info p{
  font-size: 12px;
}
}
@media (max-width: 1335px) {
  .carousel-item{
    height: 500px;

  }
  .carousel-image-info{
    width: 250px;

}
.carousel-div-image-4 img {
  height: 140px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
  padding-top: 10px;

}
.carousel-image-info p{
  font-size: 12px;
}
}

@media (max-width: 1250px) {
 
  .carousel-div-info{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }
  .carousel-div-info h1{
    font-size: 25px;
    font-weight:900;

  }
  .carousel-div-info p{
    font-size: 15px;
    font-weight: bold;
    
    
  }
}

@media (max-width: 1135px) {

  .carousel-item{
    height: 350px;

  }
  .carousel-image-info{
    width: 200px;

}
.carousel-div-image-4 img {
  height: 100px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
  padding-top: 10px;

}
.carousel-image-info p{
  font-size: 10px;
  height: 35px;
}

}
@media (max-width: 935px) {
  .carousel-image-info{
    width: 150px;

}
.carousel-div-image-4 img {
  height: 100px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
  padding-top: 10px;

}
.carousel-image-info p{
  font-size: 10px;
  height: 35px;
}

}

@media (max-width: 770px) {
  .carousel-item{
    height: 650px;

  }
  .carousel-main{
    flex-direction: column;
    padding-top: 20px;
  }
  .carousel-div-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding-left: 0%;
    color: white;
    text-align: center;
    align-items: center;
    padding-bottom: 0px;
  }
  .carousel-div-info h1{
    font-size: 20px;
    font-weight:900;

  }
  .carousel-div-info p{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
    
  }
  .carousel-div-image, .carousel-div-image-4{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.carousel-div-image img {
  width: 500px;
  max-width: 95%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);

}

.carousel-image-info{
  width: 45%;
  height: 200px;
}
.carousel-div-image-4 img {
height: 140px;
width: 90%;
border-radius: 10px;
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
padding-top: 10px;

}
.carousel-image-info p{
font-size: 10px;
}
.solicita-ahora-button{
  margin-top: 20px;
} 
}

@media (max-width: 520px) {
  .carousel-item{
    height: 570px;

  }
  .carousel-main{
    flex-direction: column;
    padding-top: 20px;
  }
  .carousel-div-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding-left: 0%;
    color: white;
    text-align: center;
    align-items: center;
    padding-bottom: 0px;
  }
  .carousel-div-info h1{
    font-size: 20px;
    font-weight:900;

  }
  .carousel-div-info p{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
    
  }
  .carousel-div-image, .carousel-div-image-4{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.carousel-div-image img {
  width: 500px;
  max-width: 95%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);

}

.carousel-image-info{
  width: 45%;
  height: 150px;
}
.carousel-div-image-4 img {
height: 100px;
width: 90%;
border-radius: 10px;
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
padding-top: 10px;

}
.carousel-image-info p{
font-size: 10px;
}
.solicita-ahora-button{
  margin-top: 20px;
} 
}

@media (max-width: 360px) {

  .carousel-main{
    flex-direction: column;
    padding-top: 20px;
  }
  .carousel-div-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding-left: 0%;
    color: white;
    text-align: center;
    align-items: center;
    padding-bottom: 0px;
  }
  .carousel-div-info h1{
    font-size: 20px;
    font-weight:900;

  }
  .carousel-div-info p{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
    
  }
  .carousel-div-image, .carousel-div-image-4{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.carousel-div-image img {
  width: 500px;
  max-width: 95%;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);

}

.carousel-image-info{
  width: 45%;
  height: 130px;
}
.carousel-div-image-4 img {
height: 80px;
width: 90%;
border-radius: 10px;
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
padding-top: 10px;

}
.carousel-image-info p{
font-size: 10px;
}
.solicita-ahora-button{
  margin-top: 20px;
} 
}





/* RAZONES */

.read-more-sbs-div{
  display: flex;
  justify-content: end;
  width: 100%;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s;
    width: 100%;
    justify-content: end;
}

.read-more:hover {
    color: var(--primary-color);
}

.razones-main{
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
    background-color: var(--input-bg);
}


.razones-main h1{
    font-weight: bold;
    text-align: center;
  /* margin-bottom: 40px; */
  font-size: 48px;
  animation: fadeInDown 1s ease forwards;
  color: var(--primary-color);
}

.razones-div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  gap: 40px;
    
}

/* .razones-div-50{
  display: flex;
  width: 80%;
  flex-wrap: wrap;
  justify-content: center;
  
} */

.razones-div-50 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px; /* Espacio entre columnas y filas, ajusta si quieres */
  justify-content: center; /* Opcional según tu diseño */
}



.razones-info {
  display: flex;
  flex-direction: column;
  width: 500px;
  padding: 40px 20px;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.razones-info-50 {
  display: flex;
  /* width: 35%; */
  padding: 40px 20px;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}


.razones-info.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.razones-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.razones-info-div {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--third-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.razones-info-div:hover {

  transform: scale(1.1);
}

.razones-info img {
  width: 65px;
  transition: transform 0.3s ease;
}

.razones-info:hover img {
  transform: rotate(5deg) scale(1.05);
}
.no-animation{
  padding-top: 0px;
}
.no-animation .razones-info:hover img {
  transform: none !important;
}

.razones-info p {
  text-align: center;
  font-size: 18px;
}

.razones-info h2 {
  text-align: center;
  font-size: 20px;
}



.razones-info-50.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.razones-info-50:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.razones-info-50 div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 3px var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.razones-info-50 div:hover {

  transform: scale(1.1);
}

.razones-info-50 img {
  width: 90%;
  transition: transform 0.3s ease;
}

.razones-info-50:hover img {
  transform: rotate(5deg) scale(1.05);
}

.razones-info-50 p {
  font-size: 18px;
  width: 100%;
  margin-bottom: 0px;
}


/* Animaciones clave */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:1740px){

.razones-info {
  width: 400px;
  padding: 30px 15px;
  gap: 10px;
  border-radius: 15px;

}
}



@media (max-width:1440px){
  .razones-main h1{
  font-size: 36px;
}
.razones-info {
  width: 300px;
  padding: 20px 10px;
  gap: 10px;
  border-radius: 10px;

}

.razones-main{
  padding: 20px 20px;

}

.razones-info{
display: flex;
flex-direction: column;
width: 250px;
padding: 20px;
padding-top: 5px;
padding-bottom: 5px;
align-items: center;
align-content: center;
gap: 10px;
}

.razones-info-div{
width: 75px;
height: 75px;

}

.razones-info img{
width: 45px;

}

.razones-info p{
font-size: 16px;
}

.razones-info h2{
font-size: 15px;
}

.razones-div{

gap: 10px;
}
}
@media (max-width:1020px){

  .razones-info p{
    font-size: 14px;
  }
  .razones-info-50 {
    padding: 20px 10px;
    border-radius: 10px;
  }
  
}

@media (max-width: 790px) {

  .razones-info-50 p {
    font-size: 14px;
    border-radius: 5px;
  }
  
  .razones-info-50 {
    padding: 10px 5px;

  }
.razones-info{
  display: flex;
  flex-direction: column;
  width: 250px;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  align-content: center;
  gap: 10px;
}

.razones-info-div{
  width: 75px;
  height: 75px;

}

.razones-main h1{
  font-size: 20px;
}
.razones-info img{
  width: 45px;

}

.razones-info p{
  font-size: 12px;
}

.razones-info h2{
font-size: 15px;
}


}


/* FAQ */

.faq-title.active {
  background-color: var(--primary-color);
  color: white !important;
}


.container-faq-image{
  display: flex;
  flex-wrap: wrap;
  
}
.container-faq-image img{
  display: flex;
  flex-wrap: wrap;
  width: 400px;
}
.container-faq{
  position: relative;
  width: 35%;
}

.faq-section {
    background: #fdfdfd;
    display: flex;
    /* min-height: 100vh; */
    /* padding: 10vh 0 0; */
    padding: 20px;
  padding-top: 0px;
  padding-bottom: 40px;
  justify-content: center;
  gap: 20px;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  font-size: 30px;
  color: var(--primary-color);
  border-radius: 8px;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    /* left: 50%; */
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -25px;
    /* margin-left: -30px; */
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}


.card-body p{
  font-size: 14px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 30px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(88, 233, 30, 0.1);
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.faq .card .card-header .faq-title .badge {
  display: flex;
  width: 30px;
  height: 30px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
}

.faq .card .card-header div{
  background-color: var(--text-white);
  border-radius: 10px;
  
}



.faq .card .card-body {

  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #505050;
  line-height: 28px;
  letter-spacing: 1px;
  background-color: white;
  border: 1px solid white;
  border-radius: 10px;
  margin-bottom: 5px;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

@media (max-width:1440px){
  .container-faq{
    width: 50%;
  }
}

@media (max-width:1020px){
  .faq-section{
    flex-direction: column;
    gap: 40px;
  }
  .container-faq{
    width: 100%;
  }
}

@media (max-width: 720px) {
  .faq {
    margin-bottom: 30px;
  }

  .faq-title h2 {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
    font-size: 20px;
  }
  .faq-title h2::before {

    bottom: -15px;
    /* margin-left: -30px; */
}
  /* .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  } */

  .mb-0 h5 {

    font-size: 12px !important;
  }
  
  .card-body p{
    font-size: 10px;
  }

  .faq .card .card-header .faq-title {

    padding-left: 10px;
    padding-right: 10px;
    

  }

  .faq .card .card-body {


    line-height: 18px;

  }
  .badge{
    font-size: 10px;

  }
}

@media (max-width:550px){
  .faq-section{
    padding-left: 20px;
    padding-right: 20px;

}
}
/* ANIMACIONES */
/* Ocultar elementos inicialmente */
.carousel-item:not(.active) .carousel-div-info,
.carousel-item:not(.active) .carousel-div-image,
.carousel-item:not(.active) .carousel-div-image-4 {
  opacity: 0;
}

/* Animación de fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de zoom */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Aplicar animaciones a los elementos */
.carousel-item.active .carousel-div-info h1 {
  animation: fadeInLeft 1s ease-in-out forwards;
}

.carousel-item.active .carousel-div-info p {
  animation: fadeInLeft 1.5s ease-in-out forwards;
}

.carousel-item.active .carousel-div-info a {
  animation: fadeInLeft 2s ease-in-out forwards;
}

.carousel-item.active .carousel-div-image img {
  animation: fadeInRight 1s ease-in-out forwards;
}

.carousel-item.active .carousel-div-image-4 .carousel-image-info {
  animation: zoomIn 1s ease-in-out forwards;
}



/* FOOTER */

.container2{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  /* background: linear-gradient(
  to right,
  var(--gradiente-color2) 0%,
  var(--gradiente-color2) 10%,
  var(--gradiente-color1) 100%
); */

  position: relative;
  padding: 20px 200px;
  width: 100%;

}


.footer-cta {
border-bottom: 1px solid #373636;
}
.single-cta i {
color: #ff5e14;
font-size: 30px;
float: left;
margin-top: 8px;
}
.cta-text {
/* padding-left: 15px; */
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
}
.cta-text p {
color: white;
font-size: 14px;
display: flex;
gap: 10px;
align-items: center;
}
.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
margin-bottom: 14px;
font-size: 14px;
    color: #7e7e7e;
line-height: 28px;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: 'Poppins', sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.twitter-bg{
background: #55ACEE;
}
.google-bg{
background: #111010;
}

.footer-widget-logo{
  background-color: transparent;
  color: var(--text-white);
  border-radius: 10px;
  text-align: start;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-widget-logo a{
  text-decoration: none;
  color: var(--text-white);
}

.footer-widget-heading h3, .footer-widget-heading h4{
color: #fff;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
position: relative;
}

.footer-widget ul li {
display: inline-block;
/* float: left; */
/* width: 50%; */
margin-bottom: 12px;
display: flex;
flex-direction: column;
}
.footer-widget ul li a:hover{
/* color: #41c00f; */
}
.footer-widget ul li a {
color: white;
text-transform: capitalize;
font-size: 14px;
text-decoration: none;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 25px 0;
}
.copyright-text p {
margin: 0;
font-size: 12px;
color: white;
text-align: center;
}
.copyright-text p a{
color: white;
font-weight: bold;
}
.footer-menu li {
display: inline-block;
margin-left: 20px;
}
.footer-menu li:hover a{
color: #ff5e14;
}
.footer-menu li a {
font-size: 14px;
color: #878787;
}
.row{
  justify-content: center;
}




@media (max-width: 1250px) {
  .footer-section{
    padding: 20px 35px;
  }
  
}



/* FORM */

.form-main{
  background-color: var(--primary-color);

        
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);

        display: flex;
        padding: 60px 0px;
        align-items: center;
}


.form-info{
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 100px;
  color: white;
}


.form-info h1{
  font-size: 30px;
  font-weight:900

}

.form-info p{
  font-size: 20px;
  font-weight:bold

}


#submitBtn, #canceltBtn{
  color: var(--primary-color);
}
        .container3 {
            width: 50%;
          position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .form-card {
            background-color: var(--primary-color);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            color: var(--text-white);
            font-size: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            
        }

        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        .reclamaciones-form:hover{
          transform: none !important;
          
        }

        form h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--text-white);
            position: relative;
        }

        form h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            transform: translateX(-50%);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        .clausula{
          font-size: 14px !important;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            background-color: var(--input-bg);
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }

        input:focus + .floating-label,
        input:not(:placeholder-shown) + .floating-label {
            top: -25px;
            left: 0;
            font-size: 18px;
            color: var(--text-white);
        }

        .floating-label {
            position: absolute;
            top: 12px;
            left: 15px;
            pointer-events: none;
            transition: 0.3s ease all;
            color: #888;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .radio-container {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .radio-container input {
            width: auto;
            margin-right: 8px;
            cursor: pointer;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            margin-top: 8px;
        }

        .checkbox-container input {
            width: auto;
            margin-right: 8px;
            cursor: pointer;
            transform: scale(1.3);
        }

        button {
            background-color: #f5d949;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px 20px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.2s ease, background-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        button:hover {
            background-color: rgb(161, 106, 2);
            transform: translateY(-2px);
        }

        button:active {
            transform: translateY(1px);
        }

        button .ripple {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(0);
            animation: ripple 0.6s linear;
        }

        @keyframes ripple {
            to {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        @keyframes fadeIn2 {
          from {
              opacity: 0;
          }
          to {
              opacity: 1;
          }
      }
      
      .success-message {
          display: none;
          text-align: center;
          padding: 15px;
          background-color: var(--third-color);
          color: var(--primary-color);
          border-radius: 8px;
          animation: fadeIn2 0.5s ease;
          width: 90%;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%); /* Esto lo mantiene centrado */
          font-size: 18px;
      }
      
      



        .shake {
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        @media (max-width: 1145px) {
          .form-main{
            padding: 40px 20px;
            flex-direction: column;
        }
        .form-info{
          padding: 0px;
          width: 100%;
          text-align: center;
        }
        .form-info h1{
          font-size: 25px;
          font-weight:900;
          text-align: center;
        }
        
        .form-info p{
          font-size: 15px;

          text-align: center;
          
        }
        .container3{
          width: 100%;
        }
        }

        @media (max-width: 790px) {

        .form-info h1{
          font-size: 20px;

        }
        
        .form-info p{
          font-size: 15px;
          
        }
        .form-group{
          font-size: 12px;
        }
        select option{
          font-size: 12px;
        }
        input, textarea, select {
          width: 100%;
          padding: 12px 15px;
          border: 1px solid #ddd;
          border-radius: 8px;
          font-size: 12px;
          background-color: var(--input-bg);
          transition: border 0.3s ease, box-shadow 0.3s ease;
      }
      .floating-label{
        font-size: 12px !important;
      }
      button {

        font-size: 12px;

    }
    form h2{
      font-size: 20px;
    }
        }

/* PASOS PRESTAMO */

.pasos-number{
  color: white; font-size: 60px; font-weight: 900;
}

/* REQUISITOS PRESTAMO */

.requisitos-info{
  display: flex;
  flex-direction: column;
  /* width: 450px; */
  padding: 40px;
  padding-bottom: 0px;
  /* align-items: center; */
  align-content: center;
  gap: 10px;
  padding-top: 10px;
}

.requisitos-info div{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.requisitos-info img{
  width: 50px;

}


.requisitos-info p{
  text-align: start;
  font-size: 15px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.requisitos-info box-icon{
  min-width: 24px;
}

@media (max-width: 770px) {
  .requisitos-info p{
    font-size: 12px;
  }
}

/* NOSOTROS */

.nosotros-main{
  padding: 80px;
  padding-bottom: 0px;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: var(--input-bg);
  
}

.nosotros-main p{
  width: 80%;
  font-size: 18px;
}
.nosotros-main h1{
  font-weight: bold;
  font-size: 48px;
animation: fadeInDown 1s ease forwards;
color: var(--primary-color);
  padding-bottom: 20px;
}

/* Estilos mejorados para la tarjeta de presentación */
.nosotros-info {
  display: flex;
  flex-direction: column;
  width: 320px;
  padding: 25px;
  align-items: center;
  gap: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}



.nosotros-info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 50px;
}

.nosotros-info:hover img {
  transform: scale(1.05);
}

.nosotros-info-image {
  height: 200px;
  width: 200px;
}

.nosotros-info-name {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  width: 100%;
  padding-top: 10px;
  align-items: center;
}

.nosotros-info h2 {
  text-align: center;
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  color: #333333;
}

.nosotros-info p {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  margin: 0;
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
}

.nosotros-info p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

@media (max-width:600px){
  .nosotros-info-image {
    height: 100px;
    width: 100px;
  }
  .nosotros-info {
    width: 220px;
    padding: 15px;

  }
}

@media (max-width: 1440px) {

  .nosotros-main h1, .nosotros-main h2{
    font-size: 36px;
  }
  .nosotros-main p{
    font-size: 16px;
  }
  .nosotros-info h2 {
    text-align: center;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #333333;
  }
  }
  

@media (max-width: 600px) {
.nosotros-main{
  padding-left: 20px;
  padding-right: 20px;

}
.nosotros-main p{
  width: 100%;
  font-size: 12px;
}
.nosotros-main h1, .nosotros-main h2{
  font-size: 20px;
}

}




/* MISION VISION */

/* hr{
  width: 1px;
  height: 90%;
  background-color: var(--gray-color);
} */

.pasos-number{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  /* border: solid 3px var(--primary-color); */
  display: flex;
  justify-content: center;
  align-items: center;

}
.pasos-number img{
  width: 70%;

}
.mision-vision-description{
  width: 80%;
}

.mision-vision-info {
  display: flex;
  width: 60%;
  padding: 20px;
  align-items: center;
  align-content: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.mision-vision-info.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}



.mision-vision-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.mision-vision-div{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.valores-div{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 1400px) {

  .mision-vision-info {

    width: 80%;

  }
  
  }

@media (max-width: 770px) {

.valores-div{

  gap: 10px;
}

.mision-vision-info {

  flex-direction: column;

}

}


.mision-vision-info p{
  text-align: center;
  font-size: 18px;
}
.mision-vision-info h2{
  text-align: center;
  font-size: 20px;
}

@media (max-width: 770px) {

  .mision-vision-div{
  
    gap: 10px;
  }
  .mision-vision-info p{
    font-size: 14px;
  }
  }

/* VALORES CORPORATIVOS */

.valores-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px; 
  padding: 20px;
  align-items: center;
  align-content: center;
  gap: 10px;
  
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}


.valores-info div{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.valores-info img{
  width: 75px;

}

.valores-info p, .valores-info h2{
  text-align: center;
}


/* TERMINOS */

.terminos-main {
  padding: 40px;
  padding-bottom: 40px;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--input-bg);
}

.terminos-main h1 {
  font-weight: bold;
  font-size: 36px;
animation: fadeInDown 1s ease forwards;
color: var(--primary-color);
  padding-bottom: 20px;
  text-align: center;
  
}


.terminos-main h2 {
  font-weight: bold;
  font-size: 22px;

  
}

.terminos-main p, .terminos-main span {
  font-size: 18px;
  margin-left: 20px;
}

.terminos-main ol, 
.terminos-main ul {
  margin-left: 30px;
}

.terminos-main li {
  margin-bottom: 5px;
  font-size: 18px;
}

.terminos-main ul {
  margin-left: 40px;
}

.ul-main{
  list-style-type: disc;
}

/* Media query para móviles */
@media (max-width: 1410px) {
  .terminos-main {
    padding-right: 20px;
    padding-left: 20px;
  }

}


@media (max-width: 600px) {


  .terminos-main p, .terminos-main span {
    width: 100%;
    font-size: 14px;
    margin-left: 10px;
  }

  .terminos-main h1 {
    font-size: 24px;
  }

  .terminos-main h2 {
    font-size: 18px;
    margin-left: 5px;
  }

  .terminos-main ol, 
  .terminos-main ul {
    margin-left: 20px;
  }
}


/* CONTACT BUTTON */


.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  background-color: var(--bg-color) !important;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap:10px
}



.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
}


.arrow-svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--primary-color);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  background-color: var(--third-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 5px;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover .arrow-svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

.mobile-only {
    display: none;
}

/* Muestra solo en pantallas de 768px o menos */
@media screen and (max-width: 1250px) {
    .mobile-only {
        display: list-item;
    }
}

@media (max-width:1410px){
  .cta {
    padding: 8px 12px;
  }
  
  
  
  .cta span {
    font-size: 14px;
  }
  
  .arrow-svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--primary-color);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    background-color: var(--third-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 5px;
  }
  
}

/* WHATSAPP BUTTON*/

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-icon {

  fill: white;
}

/* Efecto de ondas cuando se hace hover */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 2s infinite;
}

/* Tooltip al hacer hover */
.whatsapp-btn::after {
  content: "¡Chatea con nosotros!";
  position: absolute;
  top: -40px;
  right: 0;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-btn:hover::after {
  opacity: 1;
}

/* Animaciones */
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes ripple {
  0% {
      transform: scale(0.8);
      opacity: 1;
  }
  100% {
      transform: scale(2);
      opacity: 0;
  }
}

/* banner*/

.pretitle{
  font-size: 1rem;
  color: var(--third-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.logo-descuento{
  width: 70px; margin-left: 15px;
}

.banner-container {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  /* background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 40%, var(--primary-light-color) 100%); */

}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
  opacity: 0;
}

.slide.active {
  animation: slideInFromRight 0.8s ease forwards, fadeInDown 1s ease forwards;
  opacity: 1;
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-bg {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}

/* Animaciones */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moverIzquierda {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.slide.fade-out {
  animation: fadeOutUp 0.6s ease forwards;
  z-index: 1;
}

 @media (max-width: 1450px) {
  .banner-container {
    height: 500px;
  }
}

@media (max-width: 1020px) {
  .banner-container {
    height: 700px;
  }
.logo-descuento{
  width: 40px;
}
  
}



@media (max-width: 550px) {
  .banner-container {
    height: 500px;
  }
  .logo-descuento{
  width: 30px;
}
  
}

@media (max-width:380px){
  .prestamo-height{
    height: 550px !important;
  }
} 


/* Estilo de los botones */
.btn {
  padding: 12px 24px;
  background-color: var(--third-color);
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDown 1s ease forwards, pulse 2s infinite;
  width: 280px;
  font-family: 'Poppins', sans-serif;
}

.no-radius{
  border-radius: 0px;
}

.slide.active .btn {
  opacity: 1;
  transform: translateY(0);
}

.btn:hover {
  background-color: var(--third-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.2);
  color: var(--primary-color);
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 20;
  width: 100%;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--third-color);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.arrow.prev {
  left: 10%;
}

.arrow.next {
  right: 10%;
}

.arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  display: block;
}

.arrow.prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.arrow.next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

@media (max-width: 1650px) {
  .arrow.prev {
    left: 5%;
  }
  
  .arrow.next {
    right: 5%;
  }
  
}
@media (max-width: 1500px){
  .arrow {
    display: none;
  }

  .btn{
    font-size: 1.2rem;
    width: 240px;
  }
}

@media (max-width:1020px){
  .dots-container{
    justify-content:end;
    padding-right: 20px;
  }
  .btn {

  margin-top: 0px;
font-size: 1rem;
    width: 200px;
  }
}


@media (max-width:550px){
  .btn {
    padding: 6px 12px;
    background-color: var(--third-color);
    color: var(--primary-color);
    border: none;
    border-radius: 15px;
    font-size: 0.7em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInDown 1s ease forwards, pulse 2s infinite;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* PORCENTAJE LOGO */

.rate-badge {
  position: absolute;
  bottom: 50px;
  right: 40%;
  z-index: 25; /* Aseguramos que esté por encima de todo */
  background-color: var(--third-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);

  animation: pulseLight 3s infinite;
  opacity: 0;
  
}
.slide.active .rate-badge {
  opacity: 1;
  animation: 
    slideInFromRight 0.8s ease-out forwards,
    moverIzquierda 3s ease-in-out infinite alternate 1s,
    pulseLight 3s infinite;
}

.rate-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.rate-text {
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1;
}

.rate-value {
  font-size: 1.6em;
  font-weight: 700;
  margin: 2px 0;
}

@keyframes pulseLight {
  0% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  }
  50% {
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5);

  }
  100% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  }
}

@media (max-width: 1700px) {
  .rate-badge{
    width: 100px;
    height: 100px;
  }
  .rate-text {
    font-size: 0.7em;
    font-weight: 400;
    line-height: 1;
  }
  
  .rate-value {
    font-size: 1.6em;
    font-weight: 700;
    margin: 2px 0;
  }
}

@media (max-width: 1100px) {
  .rate-badge{
    width: 80px;
    height: 80px;
  }
  .rate-text {
    font-size: 0.5em;
    font-weight: 300;
    line-height: 1;
  }
  
  .rate-value {
    font-size: 1.4em;
    font-weight: 500;
    margin: 2px 0;
  }
}

/* ROMBO */

.rombo-grande {
  width: 475px;
  height: 475px;
  transform: rotate(45deg);
  position: relative;
  background: transparent;
  position: absolute;
  right: 150px;
  top: -30px;
}

.imagen-rombo {
  width: 250px;
  height: 250px;
  position: absolute;
  overflow: hidden;
  transform: rotate(45deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.imagen-rombo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-90deg);
}

.top-left {
  top: 20px;
   left: 20px; 
}

.top-right {
  top: 20px;
  right: 20px;
}

.bottom-left {
  bottom: 20px;
   left: 20px; 
}

.bottom-right {
  bottom: 20px;
  right: 20px;
}

/* SLIDE 4 IMAGES*/
.slide-4-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  height: 100%;
  justify-items: center; 
}

.slide-4-image {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-4-image img {
  object-fit: contain;
  height: 100%;
}


/* LIBRO DE RECLAMACIONES */

.reclamo-buttons{
  display: flex;
  gap: 20px;
}

.btn-close{
  color: var(--primary-color);
}

/* CAPITAL */

.capital-image img{
  width: 100%;
  border-radius: 8px;
  
}
.capital-img:hover{
  transform: none !important;
}



.line {
  border: none;
  border-top: 2px dashed var(--primary-color);
  margin: 20px 0;
  width: 100%;
  opacity: 1;
}

.no-margin-top{
  padding-top: 0px;
}

.no-margin-bottom{
  margin-bottom: 0px;
}

@media (max-width:720px){
  .no-margin-bottom-rp{
    margin-bottom: 0px;
  }
}




.outtercircle {
  width: 65px;
	height: 65px; 
	border-radius: 50%;
  border:5px dashed #0596d9;
  padding:5px;
  -webkit-animation: rotate 14s linear infinite, border-pulse 14s infinite alternate;
  animation: rotate 14s linear infinite, border-pulse 14s infinite alternate;
}

.innercircle {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: 10px;
  left: 10px;
  padding: 5px;
  -webkit-animation: pulse-2 14s infinite alternate;
  animation: pulse-2 14s infinite alternate;

}

#promotion{
  position: relative;
  margin-left: 10px;
}

.credito-h1{
  font-size: 40px;
}

@media (max-width:1440px){
  .credito-h1{
  font-size: 30px;
}

}

@media (max-width:790px){
  .credito-h1{
  font-size: 15px;
}
}

 @-webkit-keyframes rotate {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

 @keyframes rotate {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}



@-webkit-keyframes border-pulse {
  0% {border-color: var(--third-color);}
  25% {border-color: var(--third-color);;}
  50% {border-color: var(--third-color);;}
  75% {border-color: var(--third-color);;}
  100% {border-color: var(--third-color);;}
}

@keyframes border-pulse {
  0% {border-color: var(--third-color);;}
  25% {border-color: var(--third-color);;}
  50% {border-color: var(--third-color);;}
  75% {border-color: var(--third-color);;}
  100% {border-color: var(--third-color);;}
}



@-webkit-keyframes pulse-2 {
  0% {background-color: var(--third-color);;}
  25% {background-color: var(--third-color);;}
  50% {background-color: var(--third-color);;}
  75% {background-color: var(--third-color);;}
  100% {background-color: var(--third-color);;}
}

@keyframes pulse-2 {
  0% {background-color: var(--third-color);;}
  25% {background-color: var(--third-color);;}
  50% {background-color: var(--third-color);;}
  75% {background-color: var(--third-color);;}
  100% {background-color: var(--third-color);;}
}


.circletext {
	color:var(--primary-color);
  font-size:16px;
  text-align:center;
  margin:0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.margin-navbar{
  padding-top: 120px !important;
}