/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* Fondo general */
body {
    background: #f5ebf7;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 70px; /* altura aproximada de tu nav */
}

/* Navegación */
.nav {
    background-color: #e391f36c;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
    border-radius: 0 0 50px 50px;
}
/* Cuando se oculta */
.nav.hide {
  top: -100px; /* desplaza hacia arriba */
}

.nav-container {
    width: min(90%, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.nav_figure, .nav-toggle {
    z-index: 10;
}

/* Icono del menú (hamburguesa) */
.nav-toggle {
    width: 40px;
    height: 40px;
    background-image: url('menu/menu_open.svg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 1001;
    display: block;
}

.nav_input {
    display: none;
}

.nav_input:checked ~ .nav_list {
    transform: translate(0);
}

/* Cambio de icono al hacer clic */
.nav_input:checked ~ .nav-toggle {
    background-image: url('menu/menu_close.svg');
}

/* Estado oculto inicial del menú */
.nav_list {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    text-align: center;
    place-content: center;
    background-color: rgba(241, 216, 241, 0.8);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    line-height: 50px;
}
/* Mostrar menú cuando está activado */
.nav_input:checked ~ .nav_list {
    transform: translateX(0);
}

.nav_link {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 30px;
}

/* Versión escritorio */
@media screen and (min-width: 768px) {
    .nav_list {
        position: static;
        display: flex;
        transform: none;
        background: none;
        gap: 2.5rem;
    }

    .nav_input,
    .nav-toggle {
        display: none;
    }
}

.logors {
    height: 80px;
    width: 80px;
}

.main-header {
   
    text-align: center;
    margin: 30px 0;
}

.logocentral {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 30px 0 0 0;
}

.container {
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.slide {
    width: 100%;
    max-width: 1000px;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 0 20px;
}

.slide ul {
    display: flex;
    width: 300%;
    padding: 0;
    margin: 0;
    animation: slide 15s infinite cubic-bezier(0.55, 0.48, 0.37, 0.92);
}

.slide li {
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

footer {
    background-color: #e391f36c;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.my-float {
    margin-top: 16px;
}

@keyframes slide {
    0%, 20% {margin-left: 0;}
    25%, 45% {margin-left: -100%;}
    50%, 70% {margin-left: -200%;}
    75%, 100% {margin-left: 0;}
}
/*caja de comentarios */
.comentarios {
  background-color: #fff0f5;
  padding: 20px;
  border-radius: 15px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.comentarios h2 {
  text-align: center;
  color: #c71585;
  margin-bottom: 20px;
}

.comentario-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comentario-form input[type="text"],
.comentario-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.comentario-form button {
  padding: 10px;
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.comentario-form button:hover {
  background-color: #c71585;
}

.estrellas {
  direction: rtl;
  display: inline-flex;
  gap: 5px;
}

.estrellas input[type="radio"] {
  display: none;
}

.estrellas label {
  font-size: 25px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.estrellas input[type="radio"]:checked ~ label,
.estrellas label:hover,
.estrellas label:hover ~ label {
  color: gold;
}

#comentarios-lista {
  margin-top: 30px;
}

.comentario-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media screen and (max-width: 600px) {
  .comentarios {
    margin: 20px;
    padding: 15px;
  }

  .comentario-form textarea {
    font-size: 14px;
  }

  .estrellas label {
    font-size: 22px;
  }
}
.payment-methods {
    text-align: center;
    background-color: #e391f36c; /* mismo fondo que nav y footer */
    padding: 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.payment-methods h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icons img {
    height: 40px;
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.payment-payku {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    height: 40px;
}
.payment-payku img{
   
    height: 65px; /* Más grande que los otros (que están a 40px) */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    background: white;
    padding: 8px 12px; /* un poco más de espacio alrededor */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

