/* ===============================
   LANGUAGE BRIDGING – STYLE.CSS
   =============================== */
:root {
  --gold: #F1C40F;
  /* Amarillo oficial del logo */
  /* --gold: #FFCC00; Nat Geo Yellow */
  --black: #000000;
  --gray: #f7f7f7;
  --text: #222222;
  --muted: #555555;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 820px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(235, 235, 235, 0.88) 50%,
      rgba(250, 250, 250, 0.92) 100%);
  backdrop-filter: blur(10px) brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.navbar .container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  padding-left: 0;
  padding-right: 90px;
}

.logo img {
  height: 105px;
  width: auto;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--text);
}

/* Hero */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 460px;
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.65;
}

.hero-image {
  flex: 1 1 480px;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Sections */
.section {
  padding: 10px 0;
}

.service-page .section {
  padding-top: 40px;
  padding-bottom: 40px;
}


.section h2 {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--black);
  text-align: center;
  margin-bottom: 18px;
}

.section p {
  line-height: 1.8;
  color: var(--muted);
  font-size: 17px;
}

.about p {
  text-align: center;
  text-align: justify;
  margin-bottom: 18px;
}

.bg-light {
  background: var(--gray);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 34px 26px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin: 10px 0;
  color: var(--black);
}

.service-card p {
  font-size: 16px;
}

.gold {
  color: var(--gold);
}

/* Testimonials */
.testimonials blockquote {
  font-family: var(--font-title);
  font-size: 22px;
  font-style: italic;
  color: var(--black);
  text-align: center;
  margin: 0 auto 12px;
  max-width: 860px;
}

.testimonials .author {
  text-align: center;
  color: var(--muted);
}

/* Contact */
.contact .contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}

.btn.gold {
  background: var(--gold);
  color: var(--black);
}

.btn.gold:hover {
  background: #d4ad00;
}

.btn.black {
  background: var(--black);
  color: #fff;
}

.btn.black:hover {
  background: #222;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer p {
  color: var(--muted);
  margin-bottom: 10px;
}

.socials a {
  color: var(--black);
  margin: 0 10px;
  font-size: 20px;
  transition: color .25s;
}

.socials a:hover {
  color: var(--gold);
}

/* Interior pages hero (simple) */
.hero.interior .hero-content {
  display: block;
  text-align: center;
}

.hero.interior .hero-content h1 {
  font-size: 30px;
}

.hero.interior .hero-content p {
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .nav-links.active {
    display: block;
  }

  .hamburger {
    display: block;
  }
}

/* ABOUT SECTION */
.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-top: 0px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  color: #F1C40F;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-top: 0 !important;
  /* clave: sube el título y alinea con la imagen */
}

.about-text p {
  text-align: justify;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  /* asegura que la columna de la imagen se pegue arriba */
  .about-image {
    align-self: flex-start;
  }

  /* imagen bien alineada + sin bordes redondeados */
  .about-image img {
    display: block;
    /* evita el “baseline” que genera saltitos */
    width: 100%;
    max-width: 420px;
    /* ajustá si querés */
    height: auto;
    border-radius: 0 !important;
    /* pisa tu inline border-radius:16px */
  }

  .about-text {
    padding: 10px;
  }
}

/* === Animación al pasar el mouse por el logo === */
.logo img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(2.0);
  /* aumenta un 20% */
  filter: brightness(1.1);
  /* un poco más de luz */
}

/* === Centrado perfecto del botón "Conocenos" === */
.hero-text {
  max-width: 640px;
  margin: 0 auto;
  /* centra el bloque entero */
  display: flex;
  /* usamos flexbox para alinear internamente */
  flex-direction: column;
  /* apila los elementos en columna */
  align-items: center;
  /* centra horizontalmente todo dentro del bloque */
}

.hero-text h1 {
  text-align: center;
  margin-bottom: 16px;
}

.hero-text p {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #333;
}

/* Botón centrado y de ancho natural */
.hero-text .btn.gold {
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #F1C40F;
  color: #000;
  transition: all 0.3s ease;
}

.hero-text .btn.gold:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* === Centrado del menú de navegación (opción A profesional) === */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centra todo el bloque */
  position: relative;
}

/* Logo fijo a la izquierda */
.navbar .logo {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* Centra los links */
.nav-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ajusta los enlaces */
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  border-color: var(--gold);
}

/* Para vista móvil (no afecta hamburguesa actual) */
@media (max-width: 900px) {
  .navbar .container {
    justify-content: space-between;
  }

  .navbar .logo {
    position: static;
    transform: none;
  }
}

/* === Centrado del menú de navegación (estilo profesional) === 
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}*/

/* === Alineado a la derecha del menú de navegación (estilo profesional) === */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* clave */
}

/* Logo fijo a la izquierda */
.navbar .logo {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* Centra los enlaces de navegación */
.nav-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  border-color: var(--gold);
}

/* Para pantallas pequeñas, mantiene el comportamiento actual */
@media (max-width: 900px) {
  .navbar .container {
    justify-content: space-between;
  }

  .navbar .logo {
    position: static;
    transform: none;
  }
}

/* === Centrar las dos tarjetas inferiores cuando hay 5 servicios === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centra horizontalmente todas las tarjetas */
  gap: 28px;
}

.service-card {
  flex: 1 1 320px;
  /* tamaño base de cada tarjeta */
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 34px 26px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* === Ajuste visual del bloque de servicios === */
.section.bg-light {
  padding-top: 100px;
  padding-bottom: 100px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centra todas las tarjetas */
  gap: 40px 28px;
  /* 40px vertical / 28px horizontal */
  margin-top: 40px;
  /* separación respecto al título */
}

.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin: 12px 0;
  color: var(--black);
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .btn.gold {
  padding: 10px 24px;
}

/* === Igualar altura de tarjetas y alinear botones === */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 28px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  /* permite empujar el botón hacia abajo */
  justify-content: space-between;
  flex: 1 1 320px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  min-height: 300px;
  /* asegura altura uniforme */
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin: 12px 0;
  color: var(--black);
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  /* hace que el texto ocupe el espacio disponible */
}

.service-card .btn.gold {
  align-self: center;
  /* centra el botón horizontalmente */
  margin-top: auto;
  /* lo empuja al fondo de la tarjeta */
  padding: 10px 24px;
}

/* === Botón flotante de WhatsApp === */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  margin-top: 16px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* === Unificación de estilo para todos los botones dorados === */
.btn.gold,
.hero-text .btn.gold,
.service-card .btn.gold {
  background-color: #FFCC00;
  /* Nat Geo Yellow */
  color: #000;
  font-weight: 600;
  border: none;
  text-align: center;
  border-radius: 8px;
  padding: 12px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn.gold:hover,
.hero-text .btn.gold:hover,
.service-card .btn.gold:hover {
  background-color: #E6B800;
  /* tono más oscuro del Nat Geo Yellow */
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === Quitar línea inferior en los íconos de redes sociales === */
.socials a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.socials a i {
  text-decoration: none !important;
  border: none !important;
}

.socials a:hover,
.socials a i:hover {
  text-decoration: none !important;
  border: none !important;
}

/* === Sección Sobre mí con tres imágenes === */
.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin: 60px 0;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-subphoto img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-subphoto img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-subtext {
  flex: 1;
}

.about-subtext h2,
.about-subtext h3 {
  color: var(--gold);
  font-family: var(--font-title);
  margin-bottom: 16px;
}

.about-subtext p {
  text-align: justify;
  color: #333;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {

  .about-row,
  .about-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-subphoto img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-subtext {
    padding: 10px 0;
  }
}

/* === OPTIMIZACIONES MOBILE (vista celular) === */
@media (max-width: 900px) {

  /* 1️⃣ Menú desplegable más grande y cómodo */
  .nav-links ul {
    flex-direction: column;
    gap: 18px;
    /* más espacio entre ítems */
    padding: 24px;
    /* agranda el área interna */
  }

  .nav-links a {
    font-size: 18px;
    /* texto más legible */
    padding: 12px 0;
  }

  .nav-links {
    border-radius: 12px;
    width: 80vw;
    /* ancho más cómodo en pantallas pequeñas */
    right: 10%;
  }

  /* 2️⃣ Reducir separación entre texto e imagen del inicio */
  .hero {
    padding-top: 70px;
    /* antes era 120px */
  }

  .hero-text {
    margin-bottom: 10px;
    /* acerca el texto a la imagen */
  }

  /* 3️⃣ Footer más limpio y legible */
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    /* separa texto y redes */
    text-align: center;
    padding: 20px 0;
  }

  .footer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .socials a {
    margin: 0 12px;
    font-size: 22px;
  }
}

/* === FIX MOBILE – Hero y espaciados (<=900px) === */
@media (max-width: 900px) {

  /* 1) Altura y respiración del header + hero */
  .navbar .container {
    height: 84px;
  }

  /* header un pelín más alto y estable */
  .hero {
    padding-top: 96px;
    padding-bottom: 8px;
  }

  /* baja un poco el contenido y reduce aire inferior */
  .hero-text {
    margin-bottom: 6px;
    text-align: center;
  }

  /* texto más cerca de la imagen */

  /* 2) Foto del hero: quita “colchón” inferior y suaviza la sombra */
  .hero-image,
  .hero .image,
  .hero .media,
  .hero .photo {
    margin-top: 6px;
    margin-bottom: 10px;
  }

  /* cazamos cualquier wrapper posible */
  .hero-image img,
  .hero .image img,
  .hero .media img,
  .hero .photo img {
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
    /* sombra más corta para que no “empuje” */
  }

  /* 3) Reduce el espacio antes de “Servicios” y en general en secciones */
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* 4) WhatsApp un poquito más bajo para no tapar el título */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }

  /* 5) Footer: separa texto y redes sin dejarlo “pegado” ni muy abierto */
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 18px 0;
  }

  .footer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* === Ajuste fino del espacio entre la foto y el título en móvil === */
@media (max-width: 900px) {

  .hero-image img,
  .hero .image img,
  .hero .media img,
  .hero .photo img {
    margin-bottom: 0px !important;
    /* elimina espacio inferior de la foto */
  }

  .hero-text {
    margin-top: 0px !important;
    /* acerca el texto al borde de la foto */
  }

  .hero {
    padding-bottom: 0px !important;
    /* elimina colchón extra debajo del hero */
  }
}

/* === Ajuste final – Espacio entre foto y texto en móvil === */
@media (max-width: 900px) {
  .hero {
    padding-top: 92px !important;
    /* mantiene margen superior justo */
    padding-bottom: 0 !important;
    /* elimina espacio debajo de la imagen */
  }

  .hero-image img {
    margin-bottom: -10px !important;
    /* sube la imagen un poco hacia el texto */
  }

  .hero-text {
    margin-top: -8px !important;
    /* acerca aún más el texto al borde inferior de la imagen */
  }
}

/* === Pegamos el texto directamente a la foto (vista móvil) === */
@media (max-width: 900px) {
  .hero {
    padding-top: 92px !important;
    padding-bottom: 0 !important;
  }

  .hero-image img,
  .hero .image img,
  .hero .media img,
  .hero .photo img {
    margin-bottom: 0 !important;
    /* sin espacio debajo de la imagen */
  }

  .hero-text {
    margin-top: -28px !important;
    /* sube el texto hasta tocar la imagen */
  }
}

/* === Ajuste fino del logo en la barra === */
.navbar .logo img {
  position: relative;
  top: 3px;
  /* baja el logo ligeramente */
}

/* === Ajuste espaciado de Contacto y Agenda === */
.section.contact,
.section.agenda {
  padding-top: 4px !important;
  /* antes 90px */
  padding-bottom: 4px !important;
  /* mantiene algo de aire abajo */
}

.section.contact h1,
.section.agenda h1 {
  margin-bottom: 20px !important;
  /* reduce espacio entre título y contenido */
}

.contact .contact-form {
  margin-top: 10px !important;
  /* acerca el formulario al título */
}

/* Ajuste global de espacio entre hero y secciones
.section {
  padding: 10px 0 !important;
}
*/

.about-container {
  display: flex;
  align-items: flex-start !important;
}

/* === FIX DEFINITIVO ABOUT – Fuerza alineación correcta sin romper nada === */
.section.about .about-container {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 40px !important;
  flex-wrap: nowrap !important;
}

.section.about .about-image img {
  width: 360px !important;
  margin-top: 0 !important;
}

.section.about .about-text {
  flex: 1 !important;
  margin-top: 0 !important;
}

/* === FIX FINAL: alinear imagen y texto en el ABOUT === */
.section.about .container.about-container {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 40px !important;
}

.section.about .container.about-container .about-image img {
  margin-top: 0 !important;
}

.section.about .container.about-container .about-text {
  margin-top: 0 !important;
}

.contact-banner-img {
  width: 75%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact - banner alineado al ancho del formulario y SIN recorte */
.contact-banner {
  width: 100%;
  max-width: 790px;
  /* igual a .container.narrow */
  margin: 20px auto 20px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.contact-banner img {
  width: 100%;
  height: auto;
  /* clave: no fuerza altura */
  display: block;
  object-fit: contain;
  /* clave: nunca corta */
}


.service-banner {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

.service-banner3 {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.service-banner3 img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.service-banner1 {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-banner1 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 90%;
  display: block;
}

.quote-section {
  margin: 80px 0;
  text-align: center;
}

.quote-img {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === ACA EMPIEZA EL MENU DESPLEGABLE === */

.nav-links li {
  position: relative;
}

.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  display: none;
  z-index: 2000;
}

.nav-links .dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.nav-links .dropdown li a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-links .has-dropdown:hover>.dropdown {
  display: block;
}

.has-dropdown>a i {
  font-size: 0.75rem;
  margin-left: 6px;
}

.title-glow {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(241, 196, 15, 0.45);
}

/* === ACA TERMINA EL MENU DESPLEGABLE === */



/* Tarjetas con sombra azul oscuro */
.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* Nueva sombra azul */
  box-shadow: 0 4px 14px rgba(12, 35, 63, 0.25);
}

.service-card:hover {
  transform: translateY(-6px);

  /* Sombra más profunda al pasar el mouse */
  box-shadow: 0 10px 22px rgba(12, 35, 63, 0.35);
}


/* Testimonios */
.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-weight: 300;
  color: #555;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonio-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonio-texto {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonio-autor {
  display: block;
  font-size: 0.9rem;
  color: #777;
}

/* ===============================
   Agradecimientos - Carrusel (1 visible + flechas)
   =============================== */

.agradecimientos-carousel {
  position: relative;
  padding: 0 40px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 350ms ease;
  will-change: transform;
  align-items: flex-start;
  /* evita estirar alturas */
}

.agradecimientos-carousel .testimonio-card {
  flex: 0 0 100%;
  background: #5a6169;
  color: #fff;
  padding: 28px 26px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  height: auto;
}

.agradecimientos-carousel .testimonio-texto {
  color: #fff;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 14px;
  opacity: 0.95;
}

.agradecimientos-carousel .testimonio-autor {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  /* lo setea el JS con px */
  transform: translateY(-50%);
  ;
  /* evita pelear con el JS */
  z-index: 10;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.95);
  color: #111;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.carousel-btn.prev {
  left: -22px;
  /* sobresale del card */
}

.carousel-btn.next {
  right: -22px;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

/* Estrellas rojas (rating) */
.testimonio-rating {
  margin-top: 0;
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonio-rating i {
  color: #ff3b30;
  /* rojo intenso */
  font-size: 18px;
}

.agradecimientos-carousel {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-btn {
  backdrop-filter: blur(6px);
  opacity: 0.92;
}

.carousel-btn:hover {
  opacity: 1;
}

/* === Texto de introducción Agradecimientos justificado === */
#agradecimientos .section-intro {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;

  /* mejora visual */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Ajuste vertical sección Agradecimientos */
#agradecimientos {
  scroll-margin-top: 120px;
  /* header fijo */
  padding-top: 40px;
  margin-top: -40px;
}

#agradecimientos h2 {
  margin-top: 20px;
}

/* === FIX: igualar <button> y <a> con clase .btn.gold === */
button.btn.gold {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
}

button.btn.gold:hover {
  background-color: #E6B800;
  transform: translateY(-2px);
}

/* === Banner Service 4 (igual que Service 3) === */
.service-banner4 {
  width: 100%;
  max-width: 650px;
  margin: 30px auto 40px;
  /* menos aire 
  border-radius: 0;
  /* sin bordes redondeados 
  overflow: visible;
  /* no recorta 
  box-shadow: none;
  /* sin efecto tarjeta */
}

.service-banner4 img {
  width: 100%;
  height: auto;
  /* no recorta */
  display: block;
  /* sin gap fantasma */
  object-fit: contain;
  /* por si algún navegador intenta recortar */
}

.service-banner34 {
  width: 100%;
  max-width: 500px;
  margin: 30px auto 0px;
}
.service-banner34 img {
  width: 100%;
  height: auto;
  /* no recorta */
  display: block;
  /* sin gap fantasma */
  object-fit: contain;
  /* por si algún navegador intenta recortar */
}

/* Ajuste de tamaño para títulos internos en Fundamentos */
.fundamentals-page h2 {
  font-size: 28px;
}

/* === RESET GLOBAL: imágenes sin bordes redondeados === */
img {
  border-radius: 0 !important;
}

/* === RESET TOTAL de bordes redondeados en contenedores de imágenes === */

/* Services */
.service-card,
.service-box,
.service-banner,
.service-image,
.service-hero,
.service-cover,
.service-banner1,
.service-banner2,
.service-banner3,
.service-banner4,
.service-banner5,

/* Contact */
.contact-image,
.contact-banner,
.contact-card,

/* About / others */
.about-image,
.hero-image,
.quote-image {
  border-radius: 0 !important;
  overflow: visible !important;
}

/* === BANNER INTERNO UNIFICADO (services, agradecimientos, contact, etc.) === */
.page-banner {
  width: 100%;
  max-width: 900px;
  /* MISMO ancho que el texto */
  margin: 20px auto 40px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.page-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* NUNCA corta */
}

/* ABOUT - Bloque 2: alinear la foto con el INICIO del texto (primer párrafo) */
.about-block2 .about-image {
  margin-top: 56px;
  /* ajusta el arranque al nivel del párrafo */
  align-self: flex-start;
}

.about-block2 .about-image img {
  display: block;
}

/* ABOUT – Bloque "Qué me distingue" alineado al TEXTO */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  column-gap: 40px;
  align-items: start;
}

/* texto */
.about-grid .about-text {
  grid-column: 1;
}

/* imagen alineada al primer párrafo */
.about-grid .about-image {
  grid-column: 2;
  margin-top: calc(1.2em + 24px);
  /* altura real del h3 + separación */
}

.about-grid .about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
}

/* === Banner Service 44 (igual que Service 4) === */
/* === FIX DEFINITIVO: imágenes del contenido oculto (Service 4) === */
#hiddenContent .service-banner44 {
  width: 100% !important;
  max-width: 520px !important;
  /* ajustá 480–600 si querés */
  margin: 24px auto 32px !important;
}

#hiddenContent .service-banner44 img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* === BOTÓN VOLVER ARRIBA – CENTRO REAL DE PANTALLA === */
#backToTop {
  position: fixed;
  bottom: 30px;

  left: 50vw;
  /* centro del viewport */
  transform: translateX(-50%);

  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;

  display: none;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  z-index: 1001;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* hover SIN transform (clave) */
#backToTop:hover {
  background-color: #F1C40F;
  color: #000;
}

/* espacio de seguridad cuando estamos cerca del footer */
body.footer-visible #backToTop {
  bottom: 130px;
}

/*titulo metodologia en service4.html*/
.method-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;        /* más grande */
  color: #F1C40F;
  text-align: left !important;
  margin-bottom: 20px;
}

/*Marca de agua dinámica?
body::before {
  content: "Language Bridging® - Uso exclusivo";
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-25deg);
  
  font-size: 80px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);

  pointer-events: none;
  z-index: 9999;
}
*/
.impact-list {
    text-align: justify;
}

/*Efecto Lupa sobre las fotos
/* --- ZOOM EN ABOUT (hover) --- 
.about-image{
  overflow: hidden;          /* recorta lo que se agranda 
  border-radius: 16px;       /* para que el recorte sea prolijo 
}

.about-image img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
  transform-origin: center;
}

.about-image:hover img{
  transform: scale(1.15);    /* ajustá 1.10 a 1.35 según gusto 
}*/

.impact-list {
  text-align: justify;
  padding-left: 24px;
}

.impact-list li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.impact-list li p {
  margin-top: 10px;
}

h3 {
  font-family: 'Playfair Display', serif;
}

.socials a i.fa-linkedin {
  color: #0077B5;   /* azul oficial LinkedIn */
  font-size: 26px;  /* más grande */
  transition: all 0.3s ease;
}

.socials a i.fa-linkedin:hover {
  color: #005582;   /* azul más oscuro al hover */
  transform: scale(1.15);
}

.nav-links {
  margin-left: auto;
}

.about-third-block {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 40px !important;
}

.about-third-block .about-image {
  flex: 0 0 360px !important;
  margin-top: 0 !important;
}

.about-third-block .about-image img {
  width: 360px !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
}

.about-third-block .about-text {
  flex: 1 !important;
  margin-top: 0 !important;
}