 /* General */
/* ===================== */
/* RESET & BASE */
/* ===================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Evitar scroll lateral */
  
}

.page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;
  padding: 0;
  
}

/* ===================== */
/* HEADER */
/* ===================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(154, 173, 211, 0.69)!important;
  backdrop-filter: blur(5px) !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 38px;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Lista de navegacion */
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1.3rem !important;
  transition: color 0.3s !important;
}

nav ul li a:hover {
  color: #4ADCE7 !important;
}

/* Boton hamburguesa */
.menu-toggle {
  display: none ;
  font-size: 2rem;
  color: #FFF;
  cursor: pointer;
  user-select: none;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero5 {
  position: relative;
  height: 100vh;
  background: url('images/Banner-producto.webp') center/cover no-repeat fixed;
  display: flex;
  justify-content: left;
  overflow: hidden;
  z-index: 1;
}


/* Curva inferior del hero */
.hero5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  z-index: 3;
}

.hero-content5 {
  max-width: 750px;
  margin-left:150px;
  margin-top:10%;
  line-height: 20px;
  margin-left: 60%;
}

.hero-content5 h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content5 h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #032743;
  margin-bottom: 15px;
}

.hero-content5 p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #032743;
}


.hero-content5 h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #032743;
  margin-top:40%;
}

/* ✅ VISTA ESCRITORIO (ya la tienes, no se modifica) */


/* 📱 TABLET */
@media (max-width: 1024px) {
  .hero5 {
    height: auto; /* evita overflow en pantallas medianas */
    background-attachment: scroll; /* mejora rendimiento en móviles/tablets */
    padding: 60px 20px;
  }

  .hero-content5 {
    margin-left: 50px;
    margin-top: 15%;
    max-width: 90%;
  }

  .hero-content5 h1 {
    font-size: 2.5rem;
  }

  .hero-content5 h2 {
    font-size: 1.6rem;
  }

  .hero-content5 p {
    font-size: 1.4rem;
  }

  .hero-content5 h3 {
    font-size: 1.4rem;
    margin-top: 20%;
  }
}


/* 📱 MÓVIL */
@media (max-width: 768px) {
  .hero5 {
    height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .hero-content5 {
    margin: 30px auto;
    text-align: center;
    max-width: 72%;
    
    /* 🔹 Fondo blanco con transparencia */
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
  }

  .hero-content5 h1 {
    font-size: 2rem;
  }

  .hero-content5 h2 {
    font-size: 1.4rem;
  }

  .hero-content5 p {
    font-size: 1.2rem;
  }

  .hero-content5 h3 {
    font-size: 1.2rem;
    margin-top: 15%;
  }

  /* Ajustar curva inferior en móviles */
  .hero5::after {
    height: 60px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}


/* 📱 EXTRA SMALL (teléfonos muy pequeños) */
@media (max-width: 480px) {
  .hero-content5 {
    max-width: 90%;
    padding: 15px;
    background: rgba(154, 173, 211, 0.69); /* un poco más opaco en pantallas chicas */
  }

  .hero-content5 h1 {
    font-size: 1.6rem;
  }

  .hero-content5 h2 {
    font-size: 1.2rem;
  }

  .hero-content5 p {
    font-size: 1rem;
  }

  .hero-content5 h3 {
    font-size: 1rem;
  }
}


/* ===================== */
/* RESPONSIVE */
/* ===================== */




/* Tablet */
@media (max-width: 1024px) {
  nav ul {
    margin-right: 0;
  }
}

/* Movil */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: rgba(181, 169, 169, 0.95);
    width: 200px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Oculto por defecto */
    animation: slideDown 0.3s ease forwards;
  }

  nav ul.active {
    display: flex; /* Mostrar cuando tenga la clase active */
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.1rem;
  }
}

/* Apple iPhone X y similares */
@media only screen 
and (device-width: 375px) 
and (device-height: 812px) 
and (-webkit-device-pixel-ratio: 3) {
  .hero-content2 h1 {
    font-size: 1.5rem;
  }
  .hero-content2 p {
    font-size: 0.9rem;
  }
}

/* ===================== */
/* ANIMACIONES */
/* ===================== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===== SECCIÓN FOTOGRAFÍA ===== */
.foto-section5 {
  width: 100%;
  padding: 0px 0px;
  text-align: center;
  background: #fff;
}

.foto-container5 {
  max-width: 1000px;
  margin: 0 auto;
}

.foto-titulo5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #10233b; /* tono azul oscuro */
  margin-bottom: 10px;
}

.foto-subtitulo5 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #10233b;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .foto-titulo5 {
    font-size: 1.3rem;
  }
  .foto-subtitulo5 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .foto-titulo5 {
    font-size: 1.1rem;
  }
  .foto-subtitulo5 {
    font-size: 0.9rem;
  }
}


/* ===== GALERÍA ===== */
.galeria-p {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
}

.galeria-superior-p img {
  width: 100%;
  border-radius: 50px 50px 0px 0px;
  object-fit: cover;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.galeria-inferior-p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galeria-item-p img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item-p img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */

/* Tablets (pantallas medianas) */
@media (max-width: 992px) {
  .galeria-inferior-p {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .galeria-p {
    margin: 40px auto;
    padding: 0 15px;
  }

  .galeria-superior-p img {
    border-radius: 30px 30px 0 0;
  }
}

/* Móviles (pantallas pequeñas) */
@media (max-width: 600px) {
  .galeria-inferior-p {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .galeria-p {
    margin: 30px auto;
    padding: 0 10px;
  }

  .galeria-superior-p img {
    border-radius: 20px 20px 0 0;
  }
}




/* ===== SECCIÓN GALERÍA PRO ===== */
.galeria-sectionpro {
  color: #2c2c2c;
  text-align: center;
}

/* Contenedor centrado y con ancho máximo */
.galeria-containerpro {
  max-width: 1200px;
  margin: 0 auto;
padding: 50px 0px 260px 0px;
  background-color: #cecece; /* mantiene el gris solo dentro del ancho */
  }

.galeria-subtitulopro {
  font-size: 14px;
  letter-spacing: 2px;
  color: #032743;
  margin-bottom: 8px;
}

.galeria-titulopro {
  font-size: 18px;
  font-weight: 700;
  color: #032743;
  margin-bottom: 40px;
}

.galeria-imagen-principalpro img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.galeria-gridpro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.galeria-gridpro img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-gridpro img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .galeria-containerpro {
    padding: 20px 5%;
  }

  .galeria-titulopro {
    font-size: 16px;
  }
}


/* ===== GALERIA_1 ===== */
.galeria-ejecutiva {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.galeria-ejecutiva .item img {
  width: 84%;
  height: auto;
  border-radius: 0px 0px 50px 50px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
  margin-left: 8%;
  margin-top:-250px;
}

.galeria-ejecutiva .fila {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== RESPONSIVE ===== */

/* Tablets (pantallas medianas) */
@media (max-width: 992px) {
  .galeria-ejecutiva .fila {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .galeria-ejecutiva {
    gap: 16px;
    padding: 0 15px;
  }

  .galeria-ejecutiva .item img {
    border-radius: 0px 0px 30px 30px;
  }
}

/* Móviles (pantallas pequeñas) */
@media (max-width: 600px) {
  .galeria-ejecutiva .fila {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .galeria-ejecutiva {
    gap: 14px;
    padding: 0 10px;
  }

  .galeria-ejecutiva .item img {
    border-radius: 0px 0px 20px 20px;
  }
}
  
  
	/* BOTON AGENDAR */
	.btn-whatsapp-container {
  display: flex;
  justify-content: center; /* Centra horizontal */
  margin-top: -20px; /* Espacio superior opcional */
  margin-bottom: 60px;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #4fc3dc; /* Celeste */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  transition: background 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2); /* sombreado sutil */
}

.btn-whatsapp:hover {
  background-color: #3bb3cc; /* Un tono más oscuro al pasar el mouse */
}