/* Motivo: unificar estilo, mejorar accesibilidad y responsividad. */

*,*::before,*::after{
  box-sizing:border-box
}

html:focus-within{
  scroll-behavior:smooth
}

body{
  margin:0;
  font-family:'Varela Round',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0f172a;
  color:#e5e7eb;
  line-height:1.5
}

img,svg,video{
  max-width:100%;
  height:auto;
  display:block
}

a{
  color:inherit
}

:root{
  --primary:#fe8104;
  --primary-600:#e67303;
  --accent:#a230ed;
  --ink:#0a2540;
  --surface:#14213d;
  --surface-2:#0f1a33;
  --muted:#94a3b8;
  --radius:16px;
  --shadow:0 10px 25px rgba(0,0,0,.15);
  --container:1200px;
}


/* Utilities */
.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:clamp(16px,3vw,32px)
}

.section{
  padding:clamp(48px,5vw,80px) 0;
}

.section-title{
  text-align:center;
  color:var(--primary);
  margin:24px auto
}

.lead{
  color:#cbd5e1
}

.card{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  border:0;
  border-radius:12px;
  padding:.875rem 1.25rem;
  font-weight:700;
  cursor:pointer
}

.btn-primary:hover{
  background:var(--accent)
}

:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px
}

@media (prefers-reduced-motion:no-preference){
  .hover-scale{
    transition:transform .25s ease,box-shadow .25s ease
  }

  .hover-scale:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.25)
  }
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Header */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#site-header{
  position:sticky;
  top:0;
  z-index:1;                                              /* Placing header above all layers */
  background: var(--primary-600);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  height:90px
}

#Logo{
  width:132px;
  height:auto;
  border-radius:0px
}

.nav{
  position:fixed;
  inset:68px 0 auto 0;
  transform:translateY(-120%);
  transition:transform .35s ease;
  background:var(--surface);
  border-bottom:1px solid rgba(255,255,255,.08)
}

.nav.open{
  transform:translateY(0)
}

.Links_1{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:12px 16px;
  margin:0
}

.Link_menu{
  display:block;
  padding:.875rem 1rem;
  border-radius:10px;
  text-decoration:none;
  color:#fff;font-weight:700
}

.Link_menu:hover{
  background:linear-gradient(90deg,var(--accent),var(--surface));
  background-clip:text;
  color:transparent;
}

.nav-toggle{
  display:inline-flex;
  flex-direction:column;
  gap:4px;
  padding:10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:transparent;color:#fff;
  border-style: solid;
  border-color: white;
}

.nav-toggle__bar{
  width:22px;
  height:3px;
  background:#fff;border-radius:2px
}

/* desktop nav */
@media (min-width: 992px){
  
  .nav{
    position:static;
    transform:none;
    background:transparent;
    border:0
  }
  
  .Links_1{
    flex-direction:row;
    gap:24px;
    padding:0
  }
  
  .nav-toggle{
    display:none
  }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Section 1 */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Hero */
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(24px,3vw,40px);
  align-items:center;
}

.Subsection_1{
  display: flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
}

#Box_boxes{
  display: flex;
  align-items:center;
  justify-content: space-around;
  flex-direction: row;
  width: 100%;
}

.Desc_boxes{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 190px;
  height: 190px;
  margin: 8px;
  padding: 5px;
}

.Desc_boxes img{
  width:85px;
  height:85px;
  margin-inline:auto;
}

#Main_title{
  color:var(--primary);
  font-size:clamp(28px,3.5vw,48px);
  margin-bottom:16px;
  text-shadow:none
}

#Products_subtitle{
  font-size:clamp(16px,1.8vw,18px);
  color:#e2e8f0
}

#Simulator{
  display:flex;
  align-items:center;
  justify-content:center;

  /*
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  */
}

#Simulator_box{
  width:100%;
  max-width:360px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  padding:24px;
  background:var(--surface)
  /*
  flex: 0 0 100%;
  object-fit: cover;
  scroll-snap-align: center;
  */
}

#Simulator_title{
  color:var(--primary);
  font-size:clamp(22px,3vw,28px);
  margin-bottom:8px
}

#Simulator_box label,#Simulator_box output,#resultado,#adver_simulacion{
  color:#e5e7eb
}

#monto{
  width:100%
}

select, input[type="range"]{
  accent-color:var(--primary)
}

select{
  width:100%;
  max-width:320px;
  margin-top:8px;
  padding:.6rem;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:var(--surface-2);
  color:#fff
}

#montoDisplay{
  display:block;
  margin:6px 0 12px;
  font-weight:700
}

#btnCalcular{
  margin-top:16px
}

#resultado{
  margin-top:14px;
  font-weight:700
}

#adver_simulacion{
  margin-top:10px;
  color:var(--muted)
}

/* stack hero on mobile */
@media (max-width: 991.98px){
  .hero-grid{grid-template-columns:1fr;
  }
  
  #Box_boxes{
  display: flex;
  align-items:center;
  justify-content:space-around;
  flex-direction: column;
}

.Desc_boxes{
  width: 90%;
  height: 190px;
}

}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Images */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Intro */
.Section_0{
  background:transparent;
  padding-top:0
}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:16px
}

.intro-card{
  min-height:480px;
  background-size:cover;
  background-position:center
}

#Intro1{
  background-image:url("Images/Kash-card-store owner.png")
}

#Intro2{
  background-image:url("Images/Store owner 2.jpg")
}

@media (max-width: 767.98px){
  .intro-grid{grid-template-columns:1fr}
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* How */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#How{
  background:transparent
}

#How h2{
  color:var(--primary);
  text-align:center;
  margin-bottom:18px;
  font-size:clamp(22px,3vw,32px)
}

.how-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.How_boxes{
  background:var(--surface);
  padding:18px;
  border-radius:16px;
  text-align:center;
  border:1px solid rgba(255,255,255,.06);
}

.How_icons{
  width:100px;
  height:100px;
  margin-inline:auto;
}

.How_boxes h3{
  font-size:clamp(16px,2vw,18px);
}

@media (max-width: 991.98px){
  .how-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 575.98px){
  .how-grid{
    grid-template-columns:1fr;
  }
}


/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Form */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.Section_2{
  background:transparent;
}

.section h2{
  color:var(--primary);
  text-align:center;
  margin-bottom:18px;
  font-size:clamp(22px,3vw,32px)
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
  margin-top:12px;
}

#Form_image{
  background-image:url("Images/Store owner 1.jpeg");
  background-size:cover;
  background-position:center;
  border-radius:20px;
  min-height:360px;
}

form{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

input[type="text"],input[type="email"],input[type="tel"]{
  width:100%;
  padding:.8rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:var(--surface-2);
  color:#fff;
}

input::placeholder{
  color:#94a3b8;
}

.check{
  display:flex;
  gap:.6rem;
  align-items:center;
  font-size:.9rem;
  color:#cbd5e1;
}

.check input{
  width:18px;
  height:18px;
}

@media (max-width: 991.98px){
  .form-grid{
    grid-template-columns:1fr;
  }
  
  #Form_image{
    min-height:220px;
  }

  .field-row{
    grid-template-columns:1fr;
  }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Payments */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#ancla_3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pay-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  text-align:center;
  border-radius: 10px;
  padding: 15px;
  margin: 20px;
}

.pay-container h2{
  color:white;
}

.pay-container p{
  color:white;
}

#dropdown{
  display: flex;
  justify-content: center;
  height: 40%;

  background-color: var(--primary);

  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: white;

  border-radius: 10px;
  padding: 10px;
}


#dropdown select{
  border-color: white;
  border-style: solid;

  background-color: var(--primary);
}


.Payments_logos{
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.25));
}

#Logo_nequi{
  width:min(240px,90%);
  margin: auto;
}

#Logo_daviplata{
  width:min(140px,90%);
  margin: auto;
}

#Logo_pse{
  width:min(230px,90%);
  margin: auto;
}


/* About */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.Subsection_4 h2{color:var(--primary);margin-bottom:8px}
.Subsection_4 p{color:#e2e8f0}
#Subsection_4_Pic{background:transparent}
#Pic_1{width:100%;height:auto;border-radius:20px}
@media (max-width: 991.98px){.about-grid{grid-template-columns:1fr}}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* Contacto */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.contact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}

.contact-card{
  background:var(--surface);
  padding:16px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
}

.contact-card h2{color:var(--primary);text-align:center;margin-bottom:10px}

.contact-item{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  padding:8px;
  border-radius:12px;
}

.contact-item img{
  height: 60px;
  width: 60px;
}

.contact-item:hover{background:rgba(255,255,255,.06)}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* OFICINAS */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#Nuestras_oficinas iframe{width:100%;height:260px;border-radius:12px}
#legal a{display:block;margin:6px 0;color:#cbd5e1;text-decoration:none}
#legal a:hover{color:#fff}


/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* SOCIAL MEDIA */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#Redes_Sociales {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#Redes_Sociales a{
  display: flex;
  flex-direction: row;
}

#Redes_Sociales a:hover{background:rgba(255,255,255,.06)}

#Redes_Sociales img{
  height: 60px;
  width: 60px;
}

#Redes_Sociales a, p{
  text-decoration: none;
}

@media (max-width: 1200px){.contact-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 575.98px){.contact-grid{grid-template-columns:1fr}}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                                /* FOOTER */
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/* Footer */
.site-footer{background:var(--surface);border-top:1px solid rgba(255,255,255,.08);padding:16px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
@media (max-width: 575.98px){.footer-inner{flex-direction:column;text-align:center}}

/* Compat IDs */
#Main_title_0{background:transparent;padding:0;border-radius:0}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none !important;animation:none !important}
}
