/* Estilos generales */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --padding-container: 100px 0;
    --color-title: #001A49;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Contenedor principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: var(--padding-container);
}

/* Encabezado (hero) */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #ff8800;
}


/* Estilos para la imagen de fondo */
.hero__paragraph {
    color: #F4F4FD;
}

/* Barra de navegación (nav) */
.nav {
    --padding-container: 0;
    height: 100%;
    display: flex;
    align-items: center;
    height: 70px;
    
}

.logo img {
    max-width: 100px;
    font-weight: 300;
}

.nav__title {
    font-weight: 300;
}

.nav__link {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav__items {
    list-style: none;
}

.nav__links {
    color: #fff;
    text-decoration: none;
}

.nav__links:hover {
    background-color: orange;
    border-radius: 25px;
    font-size: 30px;
}

.nav__menu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img {
    display: block;
    width: 30px;
}

.nav__close {
    display: var(--show, none);
}

/* Botones de contacto (WhatsApp, teléfono) */
.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.contact-buttons a {
    display: inline-block;
    margin-right: 10px;
}

.contact-buttons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    background-color: rgb(245, 127, 17);
}

/* Menú desplegable */
.dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    border-radius: 25px;
    background-color: #353434;
}

.nav__items:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 10px 15px;
    border-bottom: 1px solid #cccccc;
    text-align: left;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgb(245, 127, 17);
    border-radius: 25px;
}

/* formas de pago */
.Pagos {
    background-color: #e5e5f7;
    background-image: radial-gradient(#ff8000 0.5px, transparent 0.5px),
      radial-gradient(#ff8000 0.5px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    overflow: hidden;
  }
  
  .Pagos__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
    /* background-image: url(../images/background-618226_1280.png); */
  }
  .Pagos__picture {
    max-width: 500px;
    
  }
  .subtitle__Pagos {
    font-size: 50px;
    font-weight: bold;
    font-display: flex;
    color: #ff8000;
    position: relative;
    top: -120px;
  }
  
  .Pagos__paragraph {
    line-height: 1.2;
    margin-bottom: 20px;
    color: black;
    position: relative;
    top: -80px;
  }
  
  .Pagos__img {
    width: 450px;
    display: block;
    height: 400px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    filter: blur(0.5px);
    top: -150px;
  }
/* formas de pago cards */
.info-content{
  background-image: url(../images/);
  
}
.imagen {
  display: inline-block; 
  margin-right: 10px; 
  width: 200px;
  height: 100px;
  border-radius: 25px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 2.5);
}
#infoSection h3{
  color: #ff3c00;
}
#infoSection ol {
  text-align: justify;
  counter-reset: list-counter;
  color: #000000;
}


#infoSection li {
  list-style: none;
  margin-left: 5px;
}

#infoSection li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  color: rgb(255, 94, 0); /* Cambia el color de los números */
  font-weight: bold;
  padding: 5px;
  
}

/* Estilo para el texto */
span{
  color: #ff0800;
  font-size: 10px;
  font-weight: bold;
}

 
/* Estilos para la imagen en las instrucciones de Yape */
.imgPY {
  max-width: 100%;
  height: 350px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  align-self: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 2.5);
}

/* ------------------------------------------------ */
.card__container {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
  width: 120px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.card:hover {
  transform: scale(1.05);
  background-color: #ff8000;
}

.card i {
  font-size: 36px;
  /* display: block; */
  margin: 0 auto 10px;
}
.card a{
  font-size: 5px;
}

.card h2 {
  margin: 0;
  font-size: 14px;
}

.card p.info {
  margin: 10px 0;
  font-size: 12px;
}

.hidden {
  display: none;
}

#infoSection {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.info-content {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.selected-card {
  border: 2px solid rgba(255, 0, 0, 0.87);
  background-color: #ff8000;
}

/* formas de pago */


/* ----------------estilos formulario--------------------- */

h1 {
  text-align: center;
  color: #ff7300;
}

form {
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #062969;
}

input[type="text"],
select,
input[type="file"] {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
 
}

select {
  
  background-image: url('../images/up-arrow-circle.svg'); 
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-right: 30px; 
}

input[type="submit"] {
  background-color: #ff4800;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  width: 50%;
  margin-left: 25%;
}

input[type="submit"]:hover {
  background-color: #ff0000;
}
/* footer */
.Footer__section {
  font-family: Arial, sans-serif;
  background-color: #423c3c;
  color: white;
  padding: 30px 0;
  text-align: justify;
}

.footer__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__links,
.footer__contact {
  flex: 1;
  padding: 0 20px;
}

.footer__links h3,
.footer__contact h3 {
  margin-bottom: 15px;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 5px;
}

.footer__links a {
  color: white;
  text-decoration: none;
}

.footer__contact p {
  margin: 5px 0;
}

.footer__location-image {
  text-align: center;
  margin: 20px;
}

.footer__location-image h3 {
  margin-bottom: 10px;
  color: white; /* Cambia el color del título */
}

.footer__location-image img {
  max-width: 100px; /* Ajusta el tamaño máximo de la imagen */
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.footer__icons{
  margin-bottom: 10px;
}

.footer__img{
  width: 40px;
  margin: 5px;
}

/* responsive */
@media (max-width:800px){
  .nav__menu{
      display: block;
  }

  .nav__link--menu{
      position: fixed;
      background-color: #000;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: .7s opacity;
  }

  .nav__link--show{
      --show: block;
      opacity:1 ;
      pointer-events: unset;
  }

  .nav__close{
      position: absolute;
      top: 30px;
      right: 30px;
      width: 30px;
      cursor: pointer;
  }

}
@media (max-width: 767px) {
  .Pagos__container {
    grid-template-columns: 1fr;
  }

  .subtitle__Pagos {
    font-size: 30px;
    top: 0;
  }

  .Pagos__paragraph {
    top: 0;
  }

  .Pagos__img {
    width: 100%;
    height: auto;
    top: 0;
  }
}