/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}
/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #1d2b2d;
  color: white;
  position: fixed;
  width: 98%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* NAV */
nav {
  flex-grow: 1;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #2bc4e3;
  color: #1d2b2d;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1d2b2d;
    display: none;
    flex-direction: column;
    animation: slideDown 0.4s ease forwards;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  nav a {
    padding: 10px 20px;
  }
}

/* Animación */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
/* Fuentes y Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --primary: #2bc4e3;
  --primary-dark: #1da7c1;
  --bg-dark: #0f1b1d;
  --text-light: #f0f0f0;
  --font-main: 'Inter', sans-serif;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(15, 27, 29, 0.8), rgba(15, 27, 29, 0.8)),
              url('../img/hero.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-main);
  color: var(--text-light);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 850px;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: var(--text-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero .btn {
  display: inline-block;
  padding: 14px 28px;
  margin: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Botón Visitar */
.hero .btn:first-of-type {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 6px 20px rgba(43, 196, 227, 0.4);
}
.hero .btn:first-of-type:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(29, 167, 193, 0.5);
}

/* Botón Login */
.hero .btn:last-of-type {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
.hero .btn:last-of-type:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }
}


/* Modal Login */
/* Fondo del modal */
.modal {
  display: none; /* se activa con JS */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Contenido del modal */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Botón de cerrar */
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #888;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content .close:hover {
  color: #333;
}

/* Título */
.modal-content h2 {
  margin-top: 0;
  color: #1d2b2d;
}

/* Inputs */
.modal-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Botón ingresar */
.modal-content button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #2bc4e3;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}

.modal-content button[type="submit"]:hover {
  background-color: #1ca5c3;
}

/* Link olvidar contraseña */
#link-olvido-pass {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: #2bc4e3;
  text-decoration: none;
}

#link-olvido-pass:hover {
  text-decoration: underline;
}

/* Mensajes de error */
#erroreslog {
  color: red;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  color: #2bc4e3;
}

@media (max-width: 400px) {
  .reset-box {
    padding: 20px 15px;
  }

  input[type="password"], button {
    font-size: 16px;
  }

  .mensaje {
    font-size: 13px;
  }
}

/* ENVÍOS SECTION */
.envios-section {
  padding: 100px 20px;
  background-color: #f8f9fa;
  color: #1d2b2d;
  font-family: 'Inter', sans-serif;
}

.envios-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1d2b2d;
}

.envios-section .intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
  color: #333;
}

.envios-benefits,
.envios-steps {
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 20px 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.envios-benefits h3,
.envios-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2bc4e3;
}

.envios-benefits ul,
.envios-steps ol {
  margin: 0;
  padding-left: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

.envios-benefits li,
.envios-steps li {
  margin-bottom: 10px;
}

/* GALERÍA */
.envios-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.envios-gallery h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1d2b2d;
  margin-bottom: 20px;
}

.envios-gallery figure {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.envios-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.envios-gallery figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

/* CTA FINAL */
.envios-cta {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
}

.envios-cta .cta-link {
  color: #2bc4e3;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.envios-cta .cta-link:hover {
  border-color: #2bc4e3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .envios-benefits,
  .envios-steps {
    padding: 15px 20px;
  }

  .envios-gallery {
    gap: 20px;
  }

  .envios-section h2 {
    font-size: 2rem;
  }

  .envios-section .intro {
    font-size: 1rem;
  }
}
/* CALIDAD SECTION */
.calidad-section {
  padding: 100px 20px;
  background-color: #ffffff;
  color: #1d2b2d;
  font-family: 'Inter', sans-serif;
}

.calidad-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1d2b2d;
}

.calidad-section .intro {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
  color: #444;
}

.calidad-points {
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 20px 30px;
  background-color: #f8f9fa;
  border-left: 5px solid #2bc4e3;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.calidad-points h3 {
  font-size: 1.5rem;
  color: #2bc4e3;
  margin-bottom: 20px;
}

.calidad-points ul {
  margin: 0;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.calidad-points li {
  margin-bottom: 10px;
}

/* GALERÍA */
.calidad-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.calidad-gallery h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1d2b2d;
  margin-bottom: 20px;
}

.calidad-gallery figure {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.calidad-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.calidad-gallery figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

/* CTA FINAL */
.calidad-cta {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
}

.calidad-cta .cta-link {
  color: #2bc4e3;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.calidad-cta .cta-link:hover {
  border-color: #2bc4e3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .calidad-section h2 {
    font-size: 2.2rem;
  }

  .calidad-section .intro {
    font-size: 1rem;
  }

  .calidad-points {
    padding: 15px 20px;
  }

  .calidad-gallery {
    gap: 20px;
  }
}
/* SECCIÓN DE RESEÑAS */
.resenas-section {
  padding: 100px 20px;
  background-color: #f9fafc;
  font-family: 'Inter', sans-serif;
  color: #1d2b2d;
}

.resenas-section h2 {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.resenas-section .intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.resena-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.resena-card {
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resena-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.resena-card .quote {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.resena-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2bc4e3;
  text-align: right;
}

/* COLORES PASTEL */
.pastel-blue { background-color: #e3f2fd; }
.pastel-green { background-color: #e0f7fa; }
.pastel-yellow { background-color: #fff8e1; }
.pastel-pink { background-color: #fce4ec; }
.pastel-purple { background-color: #ede7f6; }
.pastel-teal { background-color: #e0f2f1; }

/* RESPONSIVO */
@media (max-width: 768px) {
  .resenas-section h2 {
    font-size: 2.2rem;
  }

  .resenas-section .intro {
    font-size: 1rem;
  }

  .resena-card {
    padding: 20px 16px;
  }
}
/* SECCIÓN MISIÓN */
.mision-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #1d2b2d;
}

.mision-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.mision-section .intro {
  max-width: 850px;
  text-align: center;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
}

.mision-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.mision-gallery figure {
  max-width: 450px;
  width: 100%;
  text-align: center;
}

.mision-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.mision-gallery figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}

/* VALORES */
.valores-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #2bc4e3;
  margin-bottom: 40px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.valor-card {
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.valor-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d2b2d;
}

.valor-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* COLORES PASTEL */
.pastel-blue { background-color: #e3f2fd; }
.pastel-green { background-color: #e0f7fa; }
.pastel-yellow { background-color: #fff8e1; }
.pastel-pink { background-color: #fce4ec; }
.pastel-purple { background-color: #ede7f6; }
.pastel-teal { background-color: #e0f2f1; }

/* RESPONSIVO */
@media (max-width: 768px) {
  .mision-section h2 {
    font-size: 2.2rem;
  }

  .mision-section .intro {
    font-size: 1rem;
  }

  .valor-card {
    padding: 20px 16px;
  }
}
/* CONTACTO SECTION */
.contacto-section {
  padding: 100px 20px;
  background-color: #f9fafc;
  font-family: 'Inter', sans-serif;
  color: #1d2b2d;
}

.contacto-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.contacto-section .intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-item {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: #2bc4e3;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 1rem;
  color: #1d2b2d;
}

.contact-item a {
  text-decoration: none;
  color: #1d2b2d;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #2bc4e3;
}

/* GALERÍA DE CONTACTO */
.contact-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-gallery figure {
  max-width: 450px;
  width: 100%;
  text-align: center;
}

.contact-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.contact-gallery figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    max-width: 90%;
  }

  .contacto-section h2 {
    font-size: 2.2rem;
  }

  .contacto-section .intro {
    font-size: 1rem;
  }
}
/* FOOTER */
.site-footer {
  background-color: #1d2b2d;
  color: #ffffffcc;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #2bc4e3;
}

.footer-credit {
  text-align: center;
  color: #ffffff88;
}

.footer-credit a {
  color: #2bc4e3;
  text-decoration: none;
  font-weight: 600;
}

.footer-credit span {
  font-style: italic;
  color: #ffffffaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-nav {
    justify-content: center;
  }
}












/* Footer */
footer {
    background: #1d2b2d;
    color: white;
    text-align: center;
    padding: 20px;
}


