@font-face {
    font-family: "Futura LT Condensed";
    src: url("fonts/FuturaLT-Condensed.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Futura LT Condensed";
    src: url("fonts/FuturaLT-CondensedOblique.ttf") format("truetype");
    font-weight: 400;
    font-style: oblique;
}

@font-face {
    font-family: "Futura LT Condensed";
    src: url("fonts/Futura\ LT\ Condensed\ Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Futura LT Condensed";
    src: url("fonts/FuturaLT-CondensedBoldOblique_2.ttf") format("truetype");
    font-weight: 700;
    font-style: oblique;
}

  
  
  body{
    background-image: url('https://susuerte.com/wp-content/uploads/2025/09/Fondo@4x-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
  }
  
.banner{
    background: none;

}
.banner img {
    width: 100%;   /* Ocupa todo el ancho */
    height: auto;  /* Mantiene la proporción */
    display: block;
    background: none;
    
}

.contenedor-banco{
    display:flex; 
    max-width: 800px;
    margin: 50px auto;
    background: none;
    justify-content: center;
    align-items: center;
}
.linea{
    width: 1.5px;
    background-color: #000;
    height: 200px;
    
}
.bancos {
    flex: 1;
    background: none;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
.bancos img {
    width: 80%;
    height: 80%;
    background: none;
}

.principal-container{
    display: flex;
    flex: 2;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background: none;   
}

.sacaya{
    display: flex;
    gap: 13px;
    align-items: center;
    background: none;
    justify-content: center;
    margin-left: 0px;
    margin-right: 100px;
}

.sacaya h1 {
    font-family: "Futura LT Condensed", sans-serif;
    font-weight: 600;
    display: flex;
     /* pega el texto a la izquierda */
    align-items: center;
    height: 0px;
    background: none;
    text-align: center;
 }
 
 .sacaya img {
    height: 30px;  /* controla alto */
    width: auto;   /* que se ajuste automáticamente */
    background: none;
 }

.parrafo{
    font-family: "Futura LT Condensed", sans-serif;
    font-weight: 700;
    flex: 1;
    font-size: 25px;
    background: none;
    margin-right: px;
}

.info{
    display: flex;
    justify-content: center;
    background: none;
    margin-top: 50px;
}
.info2{
    display: flex;
    justify-content: center;
    background: none;
    margin-top: 50px;
}


.info a img:hover, .info2 img:hover{
    transform: scale(1.02);
}
.info a img{
    height: 8vh;
    background: none;
    transition: transform 0.3s ease;
    justify-content: center;
}
.info2 a img{
    height: 8vh;
    background: none;
    transition: transform 0.3s ease;
    justify-content: center;
}

.terminos-condiciones{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    background: none;

}
.titulo-terminos h1{
    font-family: "Futura LT Condensed", sans-serif; /* O la fuente que uses en tu landing */
    font-weight: 700;      /* Negrita */
    text-transform: uppercase; /* Todo en mayúsculas */
    color: #6ae4bc;         /* Verde agua */
    font-size: 2rem; 
    background: none;
}

.accordion {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Futura LT Condensed", sans-serif;
    background: none;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
    background: #e0f3f1; /* color celeste suave como tu diseño */
}

.accordion-header {
    font-family: "Futura LT Condensed", sans-serif; /* O la fuente que uses en tu landing */
    font-weight: 200; 
    width: 100%;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    background: #e0f3f1;
    color: #86a6ad;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info2{
    display: flex;
    justify-content: center;
    background: none;
    margin: 50px;
}

.accordion .accordion-header {
    font-size: 22px;   /* ↑ ajusta el tamaño que quieras */
    line-height: 1.2;  /* opcional: mejora el alto de línea */
    padding: 8px ; 
  }

.accordion-header::after {
    content: "\25BC"; /* flechita abajo */
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(180deg); /* flecha arriba cuando abre */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px;
    background: white;
}

.accordion-content p {
    margin: 10px 0;
    font-size: 16px;
    color: #86a6ad;
}
@media(max-width:635px){
    .sacaya{
        display: flex;
        flex-wrap: wrap;  /* Permite que los elementos se envuelvan en filas */
        align-items: center;
        flex-direction: row;
        margin-left: 0px;
        text-align: center;
        flex-direction: column;
    }
    .contenedor-banco{
        flex-direction: column-reverse;
    }

    .linea{
        display: none;
    }
    .bancos img{
        width: 35%;
        height: 35%;
        background: none;
    }
    .bancos {
        margin-top: 15px;
    }

    .parrafo{
        margin-right: 30px;
        text-align: justify;
        font-weight: 600;
    }
    .sacaya{
        margin-right: 0px;

    }
    .info a img {
        width: 70vw;
    }
    .info2 a img {
        width: 70vw;
    }
    .accordion {
        margin: auto 15px;
    }
    .terminos-condiciones{
        justify-content: center;
        text-align: center;
        
    }
    .sacaya img{
        height: 37px
    }
}
  

