:root{
  --header-h:80px;
  --accent:#0b7285;
  --shadow: rgba(0,0,0,0.25);
  --max-width:1100px;
}

/* Basic Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, "Helvetica Neue", Arial;
  color:#222;
  line-height:1.4;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  z-index:1000;
  background: rgba(255,255,255,0.06); /* transparent */
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px var(--shadow);
}

.header-left, .header-center, .header-right{display:flex;align-items:center}

/* menu button (three dots) */
.menu-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  background: transparent;   /* fondo transparente */
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-btn .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;          /* puntos en negro */
  display: inline-block;
}

.menu-btn:focus {
  outline: 2px solid var(--accent);
}

/* dropdown menu */
.dropdown{
  position:absolute;
  top:calc(var(--header-h) + 6px);
  left:18px;
  background:rgba(255,255,255,0.98);
  border-radius:6px;
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
  display:none;
  min-width:180px;
  overflow:hidden;
}
.dropdown ul{list-style:none}
.dropdown li a{
  display:block;padding:12px 16px;color:#222;text-decoration:none;font-weight:600;
}
.dropdown li a:hover{background:#f5f5f5}

/* center logo */
.logo {
    height: 80px;   /* o 100px, 120px… */
    opacity: 0.95;
    mix-blend-mode: normal;
}

/* language buttons */
.lang-btn{background:transparent;border:none;font-size:20px;margin-left:8px;cursor:pointer}
.lang-btn:focus{outline:2px solid var(--accent)}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-selected {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
   color: inherit; /* importante: que tome el color de .lang-selected */
}

.lang-selected .arrow {
  color: black;       /* flecha negra */
  font-size: 14px;    /* tamaño adecuado */
  opacity: 0.8;       /* opcional: ligera transparencia */
  margin-left: 4px;   /* separación de la bandera */
}

.lang-selected:hover {
  background: rgba(255,255,255,0.1);
}

.arrow {
  font-size: 14px;
  color: #000;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lang-selected:hover .arrow {
  transform: translateY(-2px); /* ligera elevación al pasar el ratón */
  opacity: 1;                  /* más visible al hover */
}
.flag-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 6px;
}

/* Tamaño uniforme de banderas */
.flag-icon {
  width: 24px;
  height: 16px; /* proporción horizontal estándar */
  object-fit: cover;
  border-radius: 3px;
}

/* Botón principal */
.lang-selected {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;
  min-width: 70px; /* evita que se deforme */
}
.lang-selected img {
  display: block;
}

/* Menú desplegable de idiomas */
.lang-options {
  position: absolute;
  top: 40px;
  right: 0;
  background: #ffffff !important;  /* fondo blanco sólido */
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 999;
  backdrop-filter: none !important; /* quitar cualquier blur */
}

/* Mostrar el menú al pasar el mouse */
.lang-dropdown:hover .lang-options {
  display: flex;
}

/* Opciones individuales */
.lang-option {
  background: transparent;         
  border: none;
  font-size: 16px;
  text-align: left;
  width: 100%;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000 !important;        
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

/* Hover de cada opción */
.lang-option:hover {
  background-color: #f0f0f0 !important;  /* gris sutil al pasar el ratón */
}

/* Bandera */
.lang-option .flag-icon {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}
.lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 18px;
}
.lang-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown panel */
.lang-options {
  position: absolute;
  top: 40px;
  right: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 999;
}

.lang-option {
  background: transparent;
  border: none;
  font-size: 18px;
  text-align: left;
  width: 100%;
  padding: 6px 14px;
  cursor: pointer;
  color: #fff;
}

.lang-option:hover {
  background: rgba(255,255,255,0.12);
}

/* HERO slides - fullscreen */
.hero {
  min-height: 100svh; /* mejor que height:100svh para evitar bugs en móvil */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenedor del slider */
.slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

/* Cada slide ocupa toda la pantalla */
.slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Imagen ajustada a pantalla */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transición del movimiento */
#slides {
  transition: transform 0.8s ease-in-out;
}





/* overlay content */
.hero-overlay{
  position:relative;
  z-index:5;
  text-align:center;
  color:white;
  text-shadow:0 6px 18px rgba(0,0,0,0.5);
  padding:8vh 16px;
  pointer-events:none;
}
.hero-overlay h1{
  font-size:clamp(28px,5vw,56px);
  margin-bottom:16px;
  pointer-events:auto;
}
.hero-overlay h3{
  font-size:clamp(16px,2.2vw,22px);
  margin-bottom:18px;
  font-weight:500;
  pointer-events:auto;
}
.cta{cursor:pointer;pointer-events:auto;padding:12px 20px;border-radius:10px;border:none;background:var(--accent);color:white;font-weight:700}
.cta-large{font-size:inherit;padding:10px 26px; font-size: clamp(24px,4vw,56px);}
.cta-medium{font-size:18px;padding:10px 18px}
.cta-small{font-size:16px;padding:8px 14px}

/* ==========================
   WHITE WIDGET GRID — 2 COLUMNAS
========================== */

.white-widget {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

/* Cada tarjeta interna usa grid de 2 columnas */
.white-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Segunda tarjeta invertida: texto izquierda, imagen derecha */
.white-inner.reverse {
  grid-template-areas: "text image";
}
.white-inner:not(.reverse) {
  grid-template-areas: "image text";
}

/* Asignamos las áreas */
.white-inner .big-image {
  grid-area: image;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.white-inner .white-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Botón debajo del texto */
.white-inner .buttons-row {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

/* Estilo base para todos los botones "cta" */
.cta {
  background-color: rgba(0,0,0,0.9); /* Negro casi sólido */
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-decoration: none;
}

.cta:hover {
  background-color: rgba(0,0,0,0.6); /* Más transparente al pasar el ratón */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .white-inner,
  .white-inner.reverse {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .white-inner .big-image,
  .white-inner .white-text {
    width: 100%;
  }

  .white-inner .big-image {
    height: 300px;
  }

  .white-inner .white-text h2,
  .white-inner .white-text p {
    text-align: center;
  }

  .white-inner .buttons-row {
    justify-content: center;
    margin-top: 12px;
  }
}


/* gallery carrusell */
.gallery-widget {
  padding: 40px 20px;
  text-align: center;
}

.gallery-carousel {
  max-width: 1100px;
  margin: 18px auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-track {
  display: flex;
  overflow: hidden;
  width: 80%;
  scroll-behavior: smooth;
  gap: 0; /* Importante para evitar que se vean 2 imágenes */
}

.g-track img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.g-prev, .g-next {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.gallery-widget {
  max-width: 1200px;      /* límite de ancho */
  margin: 0 auto;         /* centra horizontalmente */
  padding: 48px 20px;     /* espacio alrededor */
  text-align: center;     /* centra el título h2 */
}

.gallery-carousel {
  display: flex;
  align-items: center;
  justify-content: center; /* centra los botones y el track */
  gap: 10px;
}

.gallery-carousel .g-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 800px;       /* ajusta el ancho visible del carrusel */
  border-radius: 8px;
}

/* Botones */
.g-prev, .g-next {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}


/* BOTÓN GOOGLE REVIEWS FLOTANTE */
#google-review-btn {
  position: fixed;
  bottom: 100px;
  left: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  transform: translateY(15px);
  transition: opacity .35s ease, transform .35s ease;

  min-width: 180px;         /* ← Botón MÁS largo */
  justify-content: flex-start;
}

#google-review-btn.show {
  opacity: 1;
  transform: translateY(0);
}

/* Ícono Google */
#google-review-btn .gr-icon {
  width: 40px;              /* ← Más grande y visible */
  height: 40px;
  flex-shrink: 0;           /* El ícono mantiene su tamaño */
  object-fit: contain;
}

/* Contenedor del texto */
#google-review-btn .gr-info {
  flex: 1;                  /* ← Esto hace que se expanda a lo ancho */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

/* Estrellas */
#google-review-btn .gr-stars {
  color: #fbbc05;
  font-size: 20px;          /* Un poco más grande */
  margin-bottom: 3px;
}

/* Texto de reseñas */
#google-review-btn .gr-count {
  font-size: 14px;
  color: #444;
}

/* TEAM WIDGET */
.team-widget {
  display: flex;
  flex-direction: row-reverse;  /* invierte el orden: imagen derecha, texto izquierda */
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-image {
  flex: 1;                   /* ocupa mitad izquierda */
}

.team-image img {
  width: 100%;
  height: 400px;             /* altura fija más razonable que 80vh */
  object-fit: cover;         /* recorta manteniendo proporción */
  border-radius: 8px;        /* opcional: esquinas redondeadas */
}

.team-text {
  flex: 1;                   /* ocupa mitad derecha */
  max-width: 600px;
  text-align: left;          /* texto alineado a la izquierda */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.team-text p {
  line-height: 1.6;
  font-weight: 400;
  color: #222;
}

.team-text button {
  margin-top: 20px;          /* botón debajo del texto */
  align-self: flex-start;    /* botón alineado a la izquierda */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-widget {
    flex-direction: column;  /* imagen arriba, texto abajo */
    text-align: center;
  }
  .team-image img {
    height: 250px;           /* altura más baja en móviles */
  }
  .team-text {
    align-items: center;
    text-align: center;
  }
  .team-text button {
    align-self: center;
  }
}


/* Social */

.socials-widget {
  padding: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;   
  height: 50px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social:hover {
  transform: scale(1.1); /* ligero zoom al pasar el ratón */
}

.social-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* contact */
.contact-widget{padding:10px 10px;background:#fafafa}
.contact-widget h3 {
  text-align: center;
  font-size: 1.8rem;   /* opcional: tamaño más grande */
  margin-bottom: 20px; /* separación respecto al formulario */
}
.contact-form{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.contact-form label{display:flex;flex-direction:column;font-weight:600}
.contact-form input,.contact-form textarea{padding:10px;border-radius:8px;border:1px solid #ddd}

/* footer */
.site-footer{background:#0f1720;color:#fff;padding:24px 20px}
.footer-inner{max-width:var(--max-width);margin:0 auto;display:flex;justify-content:space-between;align-items:center}



/* whatsapp */
.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  cursor: pointer;
  z-index: 1200;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1); /* ligero zoom al pasar el ratón */
}

.whatsapp-logo {
  width: 60px;  /* tamaño más grande */
  height: 60px; /* mantener proporción */
  display: block;
}

/* responsive tweaks */
@media (max-width:800px){
  .g-track img{width:140px;height:100px}
  .hero-overlay h1{font-size:28px}
  .logo{height:36px}
  .header-right{gap:6px}
  .dropdown{left:8px}
}

/* FORMULARIO CONTACTO */
.contact-wrapper {
    padding: 40px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    background: #ffffffdd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px #0004;
    backdrop-filter: blur(6px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 10px 0 20px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.hidden-field {
    display: none;
}

/* THANK YOU PAGE */
.thankyou-wrapper {
    margin-top: 160px;
    display: flex;
    justify-content: center;
}

.thankyou-card {
    background: #ffffffdd;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 25px #0003;
}




/* Contenedor de logos padi ssi */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0; /* elimina espacio extra */
  padding: 0;
}

/* Logo PADI en el footer */
.social.padi {
  background: transparent;   /* sin fondo */
  padding: 0;
}

.padi-logo {
  height: 70px;              /* ajusta tamaño */
  width: auto;
  display: block;
}


 /* Para mi hotel.html que quire bien el hero de la imagen */
.hero-fixed {
  background-image: url("multimedia/hotel/hotel5.webp");
  background-size: cover;
  background-position: center;
  height: 100vh; /* o menos si quieres */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-fixed .hero-overlay {
  color: white;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
}

/* Hotel intro: dos columnas de texto sin solaparse */
#hotel-intro .white-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 40px;
  align-items: start;
}

/* Evitar que ambos bloques usen la misma grid-area */
#hotel-intro .white-text {
  grid-area: auto; /* sobrescribe el grid-area:text global */
  text-align: left;
  background: #fff;          /* opcional: fondo blanco */
  padding: 20px;             /* opcional: espacio interno */
}

/* titulo de hotel.html de benthos bali dive resort */
#titulo-benthos {
  text-align: center;     /* centra el texto */
  width: 100%;            /* ocupa todo el ancho */
  margin: 0 auto 40px;    /* lo centra y añade separación abajo */
  font-size: 2.2rem;      /* opcional: tamaño más grande */
  font-weight: 700;       /* opcional: más destacado */
  margin-bottom: 10px; /* reduce la separación hacia abajo */
}
/* Responsive: en móvil se apilan */
@media (max-width: 900px) {
  #hotel-intro .white-inner {
    grid-template-columns: 1fr;
  }
}


/* Sección ubicación para mapa contactos */
.location-widget {
  padding: 40px 20px;
  text-align: center;
  background: #fafafa;
}

.location-widget h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.location-widget p {
  margin-bottom: 20px;
  font-weight: 500;
}

.map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.map-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%); /* justo encima del marcador */
  width: 60px;
  height: 60px;
}

.map-logo img {
  width: 100%;
  height: auto;
}


/* Hero cabecera para contacto.html */
.contact-hero {
  background-image: url("multimedia/bentos_diving_2.jpg"); /* ajusta extensión */
  background-size: cover;
  background-position: center;
  height: 90vh; /* ocupa parte de la pantalla, no todo */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-hero .hero-overlay {
  color: white;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
}


/* hotel.html el grid de las habitaciones */
#habitaciones .white-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

#habitaciones .room h4 {
  margin-top: 16px;
  font-size: 1.4rem;
}

#habitaciones .room p {
  margin-top: 8px;
  line-height: 1.5;
  color: #444;
}
#habitaciones .white-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start; /* fuerza que ambas columnas empiecen arriba */
}
.section-title {
  text-align: center;
  margin-bottom: 20px; /* controla la separación hacia abajo */
  font-size: 2rem;
  font-weight: 700;
}

.buttons-row {
  grid-column: 1 / -1;       /* hace que ocupe todo el ancho del grid */
  display: flex;
  justify-content: center;   /* centra horizontalmente el contenido */
  margin-top: 20px;          /* separación respecto a lo de arriba */
}



/* inmersiones.html*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

.gallery-item p {
  margin: 8px 0;
  color: #444;
}

.gallery-item .cta {
  margin-top: 12px;
  display: inline-block;
}



/* seleccion de cursos, cursos.html */

.courses-section {
  display: flex;
  flex-wrap: wrap; /* permite que se acomoden en móvil */
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: center;
}

.courses-title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #003049; /* ajusta según tu paleta */
}

.course-card {
  max-width: 250px;
}

.course-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* círculo perfecto */
  margin-bottom: 1rem;

}

.course-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.course-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}


 /* cursos.html para ir a la seccion pro */

.pro-section {
  background-image: url("multimedia/mantabanner.jpg"); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  height: 50vh; /* ajusta la altura según lo que quieras */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.pro-overlay {

  padding: 2rem;
  border-radius: 10px;
}

.pro-overlay h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


/* cursos-profesionales.html seccion dive master */

.divemaster-section {
  background: #fafafa; /* fondo claro, puedes cambiar a imagen si quieres */
  padding: 60px 20px;
  text-align: center;
}

.divemaster-content {
  max-width: 900px;
  margin: 0 auto;
}

.divemaster-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #003049; /* tono marino, ajusta según tu paleta */
}

.divemaster-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #333;
}

.divemaster-content .cta {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: rgba(0,0,0,0.8); /* negro con transparencia */
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.divemaster-content .cta:hover {
  background-color: rgba(0,0,0,0.6);
  transform: translateY(-2px);
}



/* cursos-profesionales.html seccion de instructores 2026 */

.instructor-section {
  padding: 60px 20px;
  background: #fff; /* fondo claro, puedes cambiar */
}

.instructor-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 40px;
  align-items: center;
}

.instructor-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.instructor-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #003049; /* tono marino */
}

.instructor-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive: en móvil se apilan */
@media (max-width: 900px) {
  .instructor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructor-image img {
    height: 250px;
  }
}



/* Secciones de sobrenosotros.html */
.mission-section,
.instructors-section,
.equipment-section {
  padding: 60px 20px;
  background: #fafafa;
}

/* Sección Partners en seccion sobrenosotros.html */
.partners-section {
  padding: 60px 20px;
  text-align: center;
  background: #f8f8f8; /* suave, elegante */
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Contenedor de logos */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px; /* separación entre logos */
  flex-wrap: wrap; /* para que en móvil se adapten */
}

/* Cada logo */
.partner-item img {
  height: 100px;       /* tamaño que pediste */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(20%); /* toque elegante */
}

/* Hover */
.partner-item:hover img {
  transform: scale(1.1);
  opacity: 1;
  filter: grayscale(0%);
}



/* Layout de dos columnas para misión, instructores y equipamiento */
.mission-inner,
.instructors-inner,
.equipment-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Imagenes */
.mission-image img,
.instructors-image img,
.equipment-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

/* Títulos */
.mission-text h2,
.instructors-text h2,
.equipment-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #003049;
}

/* Párrafos */
.mission-text p,
.instructors-text p,
.equipment-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive: en móvil se apilan */
@media (max-width: 900px) {
  .mission-inner,
  .instructors-inner,
  .equipment-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-image img,
  .instructors-image img,
  .equipment-image img {
    height: 250px;
  }
}


/* Padangbai.html */
.dive-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.dive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.dive-item.text-left .dive-text {
  order: 1;
  flex: 1;
  padding-right: 20px;
}

.dive-item.text-left .dive-image {
  order: 2;
  flex: 1;
}

.dive-item.text-right .dive-image {
  order: 1;
  flex: 1;
}

.dive-item.text-right .dive-text {
  order: 2;
  flex: 1;
  padding-left: 20px;
}

.dive-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #004d61; /* tono marino */
}

.dive-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.dive-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsivo */
@media (max-width: 768px) {
  .dive-item {
    flex-direction: column;
  }
  .dive-text, .dive-image {
    order: unset;
    padding: 0;
    margin-bottom: 20px;
  }
}




.dive-cta {
  text-align: center;
  margin: 50px 0;
  padding: 30px;
  border-radius: 8px;
}

.dive-cta h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: black; /* ajusta al color de tu branding */
}

.dive-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.dive-cta .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0077b6; /* mismo color que tus otros botones */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.dive-cta .btn:hover {
  background-color: #005f87; /* tono más oscuro al pasar el mouse */
}