 /* 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(253, 248, 248, 0.69);
  backdrop-filter: blur(5px);
}

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: #032743;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00c4cc;
}

/* Boton hamburguesa */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #032743;
  cursor: pointer;
  user-select: none;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero3 {
  position: relative;
  height: 100vh;
  background: url('images/Banner-ejecutivo.webp') center/cover no-repeat fixed;
  display: flex;
  justify-content: left;
  overflow: hidden;
  z-index: 1;
}


/* Curva inferior del hero */
.hero3::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-content3 {
  max-width: 750px;
  margin-left:150px;
  margin-top:10%;
  line-height: 20px;
}

.hero-content3 h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #032743;
  margin-bottom: 15px;
}

.hero-content3 h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #032743;
  margin-bottom: 15px;
}

.hero-content3 p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #032743;
}


.hero-content3 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) {
  .hero3 {
    height: auto; /* evita overflow en pantallas medianas */
    background-attachment: scroll; /* mejora rendimiento en móviles/tablets */
    padding: 60px 20px;
  }

  .hero-content3 {
    margin-left: 50px;
    margin-top: 15%;
    max-width: 90%;
  }

  .hero-content3 h1 {
    font-size: 2.5rem;
  }

  .hero-content3 h2 {
    font-size: 1.6rem;
  }

  .hero-content2 p {
    font-size: 1.4rem;
  }

  .hero-content3 h3 {
    font-size: 1.4rem;
    margin-top: 20%;
  }
}


/* 📱 MÓVIL */
@media (max-width: 768px) {
  .hero3 {
    height: auto;
    padding: 40px 15px;
    background-position: center;
  }

  .hero-content3 {
    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-content3 h1 {
    font-size: 2rem;
  }

  .hero-content3 h2 {
    font-size: 1.4rem;
  }

  .hero-content3 p {
    font-size: 1.2rem;
  }

  .hero-content3 h3 {
    font-size: 1.2rem;
    margin-top: 15%;
  }

  /* Ajustar curva inferior en móviles */
  .hero3::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-content3 {
    max-width: 90%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5); /* un poco más opaco en pantallas chicas */
  }

  .hero-content3 h1 {
    font-size: 1.6rem;
  }

  .hero-content3 h2 {
    font-size: 1.2rem;
  }

  .hero-content3 p {
    font-size: 1rem;
  }

  .hero-content3 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(253, 248, 248, 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-section3 {
  width: 100%;
  padding: 0px 0px;
  text-align: center;
  background: #fff;
}

.foto-container3 {
  max-width: 1000px;
  margin: 0 auto;
}

.foto-titulo3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #10233b; /* tono azul oscuro */
  margin-bottom: 10px;
}

.foto-subtitulo3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #10233b;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .foto-titulo3 {
    font-size: 1.3rem;
  }
  .foto-subtitulo3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .foto-titulo3 {
    font-size: 1.1rem;
  }
  .foto-subtitulo3 {
    font-size: 0.9rem;
  }
}



/* GALERIA_1 */
.galeria-ejecutiva {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .galeria-ejecutiva .item img {
    width: 100%;
    height: auto;
    border-radius: 35px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
  }

  .galeria-ejecutiva .fila {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  
  
  /* PLECA */
  section.fotografia2 {
      display: flex;
      justify-content: center;
      padding: 0px 20px;
      background: #fff;
    }

    .contenedor2 {
      display: flex;
      align-items: center;
      background: #f4f4f4;
      padding: 13px 11px;
      border-radius: 65px;
      box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
      max-width: 1190px;
      width: 100%;
    }

    .icono2 {
      flex-shrink: 0;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
   
    }

    .icono2 img {
      width: 90px;
      height: auto;
    }

    .texto2 {
      color: #1a1a1a;
      font-size: 16px;
      line-height: 1.5em;
    }

    .texto2 strong {
      font-weight: bold;
    }

    .texto2 .azul2 {
      color: #0a2342;
      font-weight: bold;
    }

    .texto2 p {
      margin: 4px 0;
    }
	
	/* BOTON AGENDAR */
	.btn-whatsapp-container {
  display: flex;
  justify-content: center; /* Centra horizontal */
  margin-top: -40px; /* 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 */
}