/* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HEADER & NAV
=========================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
}

.logo span {
  color: #f28c2e;
}

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #f28c2e;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(70%);
  z-index: -2;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn {
  background: #f28c2e;
  color: #000;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* ===========================
   QUIÉNES SOMOS
=========================== */
.nosotras-seccion {
  background-color: #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.nosotras-seccion .container {
  max-width: 900px;
  margin: 0 auto;
}

.nosotras-seccion h2 {
  font-size: 2.4rem;
  color: #f28c2e;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.nosotras-seccion p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #ddd;
}

.nosotras-seccion strong {
  color: #fff;
}

.nosotras-seccion em {
  color: #f28c2e;
  font-style: normal;
}

/* ===========================
   SERVICIOS
=========================== */
.servicios-fullscreen {
  background-color: #0a0a0a;
  text-align: center;
  padding: 100px 20px;
}

.servicios-fullscreen h2 {
  color: #f28c2e;
  font-size: 2.3rem;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Tarjetas */
.servicio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 350px;
  height: 450px;
}

.servicio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.6);
  transition: all 0.5s ease;
}

.overlay-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: all 0.4s ease;
}

.overlay-card h3 {
  color: #f28c2e;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.overlay-card p {
  color: #ddd;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Hover */
.servicio-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.servicio-card:hover .overlay-card p {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   LOGOS CARRUSEL
=========================== */
.logos-carousel {
  background-color: #0b0b0b;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo img {
  height: 55px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===========================
   GALERÍA
=========================== */
/* === GALERÍA === */
.galeria {
  background-color: #0b0b0b;
  padding: 100px 0;
  text-align: center;
}

.galeria h2 {
  color: #f28c2e;
  font-size: 2rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GRID RESPONSIVO */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* IMÁGENES CON ALTO UNIFORME */
.galeria-grid img {
  width: 100%;
  height: 380px; /* 🔹 todas las fotos igual de altas */
  object-fit: cover; /* 🔹 recorta sin deformar */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: none; /* 🔹 asegura que estén a color */
}

.galeria-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* MOBILE */
@media (max-width: 768px) {
  .galeria-grid img {
    height: 300px; /* 🔹 más bajo en pantallas chicas */
  }
}

/* ===========================
   CONTACTO
=========================== */
.contacto {
  text-align: center;
  padding: 100px 20px;
  background-color: #0b0b0b;
}

.contacto h2 {
  color: #f28c2e;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacto p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Formulario */
.contacto-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group input,
textarea {
  flex: 1;
  min-width: 45%;
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 14px 18px;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

textarea {
  resize: none;
  min-height: 140px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f28c2e;
  background: rgba(255,255,255,0.05);
}

.btn.enviar {
  background: linear-gradient(90deg, #f28c2e, #ffb869);
  color: #000;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
}

.btn.enviar:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background-color: #000;
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .menu {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .logos-track {
    gap: 40px;
  }

  .nosotras-seccion {
    padding: 80px 15px;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .contacto-form {
    width: 90%;
  }
}
/* ==== SECCIÓN LOGOS ==== */
.logos-carousel {
  background-color: #0b0b0b;
  height: 130px; /* altura del bloque */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* ==== CARRUSEL ==== */
.logos-track {
  display: flex;
  align-items: center;
  gap: 70px; /* espacio entre logos */
  animation: scroll 30s linear infinite;
}

/* ==== LOGOS ==== */
.logo img {
  height: 55px; /* 🔹 igual altura para todos */
  width: auto; /* 🔹 mantiene proporción original */
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover efecto */
.logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Animación de desplazamiento */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 🔹 Ajuste responsive */
@media (max-width: 768px) {
  .logo img {
    height: 40px; /* un poco más chico en móvil */
  }
}
/* === CONTACTO === */
.contacto {
  background-color: #0b0b0b;
  text-align: center;
  padding: 100px 20px;
}

.contacto h2 {
  color: #f28c2e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 2rem;
}

.contacto p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Botón WhatsApp centrado */
.boton-wsp {
  margin-bottom: 40px; /* 🔹 espacio entre botón y formulario */
}

.boton-wsp .btn {
  background: #f28c2e;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.boton-wsp .btn:hover {
  background: #fff;
  color: #000;
}

/* Formulario */
.contacto-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group input,
textarea {
  flex: 1;
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

textarea {
  resize: none;
  min-height: 140px;
}

input::placeholder,
textarea::placeholder {
  color: #888;
}

/* Botón Enviar */
.btn.enviar {
  background: linear-gradient(90deg, #f28c2e, #ffb25c);
  color: #0f0f0f;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
}

.btn.enviar:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366; /* verde clásico de WhatsApp */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 60%; /* el ícono se adapta sin recortarse */
  height: auto;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}
/* === FORMULARIO CONTACTO — tipografía profesional === */
.contacto-form {
  font-family: 'Manrope', sans-serif;
}

.contacto-form input,
.contacto-form textarea,
.contacto-form button {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.contacto-form ::placeholder {
  color: #ccc;
  opacity: 0.8;
  font-family: 'Manrope', sans-serif;
}

.contacto-form button.enviar {
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* === FOOTER PROFESIONAL === */
.footer-pro {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 40px 20px;
  font-family: 'Manrope', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo y descripción */
.footer-left h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.footer-left span {
  color: #f28c2e; /* dorado/naranja */
}

.footer-left p {
  color: #bbb;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 380px;
}

/* Enlaces */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #f28c2e;
}

/* Íconos redes */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #f28c2e;
  transform: translateY(-3px);
}

/* Línea inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
/* === PARALLAX FRASE === */
.parallax-frase {
background-image: url('img/corona.jpeg');
  background-attachment: fixed;
background-position: center 25%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 65vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.parallax-frase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.parallax-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
}

.parallax-overlay .frase {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.parallax-overlay .frase span {
  color: #f28c2e;
}

.parallax-overlay .subfrase {
  margin-top: 10px;
  font-size: 1rem;
  color: #ddd;
}

/* Responsive */
@media (min-width: 768px) {
  .parallax-overlay .frase {
    font-size: 2.8rem;
  }
  .parallax-overlay .subfrase {
    font-size: 1.2rem;
  }
}
.parallax-frase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  ); /* negro semi-transparente */
  z-index: 1;
}
/* ==========================
   SERVICIOS EXTRA (eventos + digitales)
   ========================== */
#servicios-extra {
  background-color: #0c0c0c;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

/* ---------- TITULOS ---------- */
#servicios-extra h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #f1f1f1;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

#servicios-extra .intro-servicios {
  color: #bcbcbc;
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 55px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- GRID ---------- */
#servicios-extra .servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- TARJETAS ---------- */
#servicios-extra .servicio-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-bottom: 18px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Imagen */
#servicios-extra .servicio-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

#servicios-extra .servicio-card:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

/* Título */
#servicios-extra .servicio-card h3 {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 15px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

/* Texto */
#servicios-extra .servicio-card p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 90%;
  margin: 0 auto;
}

/* Hover sutil naranja premium */
#servicios-extra .servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(242, 140, 46, 0.12);
}

#servicios-extra .servicio-card:hover h3 {
  color: #f28c2e;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  #servicios-extra .servicios-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  #servicios-extra {
    padding: 60px 15px;
  }

  #servicios-extra h2 {
    font-size: 1.8rem;
  }

  #servicios-extra .intro-servicios {
    font-size: 1rem;
  }

  #servicios-extra .servicio-card img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  #servicios-extra .servicio-card img {
    height: 130px;
  }

  #servicios-extra .servicio-card h3 {
    font-size: 1rem;
  }
}
.galeria {
  text-align: center;
  padding: 60px 0;
  background-color: #0c0c0c;
}

.galeria h2 {
  color: #ff7c1a; /* mantiene el naranja de títulos */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 40px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.galeria-item:hover img {
  transform: scale(1.03);
}

.galeria-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 15px 10px;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 0 0 12px 12px;
}

.galeria-overlay p {
  margin: 0;
  color: #fff;
  font-weight: 400;
}
.galeria-item img {
  width: 100%;
  height: 360px; /* ajustá este valor según el alto que quieras */
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}
.logo-img {
  height: 45px;
  width: auto;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 10px;
}

.footer-content {
  text-align: center;
  padding: 40px 0;
}

.footer p {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 5px;
}
.logo-img {
  height: 80px;   /* antes 45px */
  width: auto;
  object-fit: contain;
}
.header {
  padding: 10px 40px; /* reducís espacio si el logo crece demasiado */
}
.logo-img {
  height: 90px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}
/* --- NAV --- */
.header {
  background-color: #0c0c0c;
  padding: 10px 60px; /* más fino */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px; /* controla la altura total */
}

/* --- LOGO --- */

/* --- NAV --- */
.header {
  background-color: #0c0c0c;
  padding: 8px 60px; /* más fino */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px; /* altura del nav */
}

/* --- LOGO --- */

.footer-pro {
  background-color: #0c0c0c;
  color: #ccc;
  padding: 60px 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 320px;
}

.footer-logo-img {
  height: 70px; /* ajustá entre 60 y 90 según el look */
  width: auto;
  margin-bottom: 15px;
  display: block;
}

.footer-left p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff7c1a; /* naranja institucional */
}

.social-icons a {
  color: #ccc;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff7c1a;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #666;
}
.footer-logo-img {
  height: 120px;       /* antes 70px → probá entre 100 y 140 según el look */
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  transform: scale(1.5); /* 🔥 esto agranda visualmente el logo */
  transform-origin: left top; /* mantiene alineado hacia la izquierda */
}
.footer-left {
  text-align: center;
  max-width: 100%;
}
.footer-logo-img {
  transform-origin: center top;
  margin: 0 auto 20px;
}
.footer-logo-img {
  height: 95px;        /* 🔹 tamaño equilibrado */
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transform: scale(1.2);   /* un leve realce visual */
  transform-origin: center top;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;  /* ✅ Alinea verticalmente las tres columnas */
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Ajustes finos de cada columna */
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  text-align: center; /* centrado uniforme */
}

/* Logo equilibrado */
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  transform: scale(1.15);
  transform-origin: center center;
}

/* Texto debajo del logo */
.footer-left p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #aaa;
  margin: 0 auto;
  max-width: 90%;
}

/* Menú centrado */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff7c1a;
}

/* Íconos de redes */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff7c1a;
}

/* Línea inferior */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #666;
}
/* === BOTÓN WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === CHATBOT === */
.chatbot-container {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 300px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  display: none; /* 👈 inicialmente oculto */
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

/* Encabezado verde tipo WhatsApp */
.chatbot-header {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Cuerpo del chat */
.chatbot-body {
  background: #e6ffed;
  padding: 15px;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Mensajes */
.chat-message {
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  max-width: 85%;
  word-wrap: break-word;
}

.chat-message.bot {
  background: white;
  color: #333;
  border-radius: 12px 12px 12px 0;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-message.user {
  background: #dcf8c6;
  color: #333;
  border-radius: 12px 12px 0 12px;
  align-self: flex-end;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Input del chat */
.chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #f6f6f6;
}

.chat-input input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.chat-input button {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.chat-input button:hover {
  background-color: #20b95a;
}

/* === BOTÓN ABRIR CHAT === */
.chatbot-open {
  position: fixed;
  bottom: 95px; /* mismo nivel del chat */
  right: 90px;  /* alineado con WhatsApp */
  background: #25D366; /* verde WhatsApp */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: transform 0.2s ease, background 0.3s ease;
}

.chatbot-open:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === BOTÓN ABRIR CHAT (ALINEADO CON WHATSAPP) === */
.chatbot-open {
  position: fixed;
  bottom: 95px; /* mismo nivel que el botón de WhatsApp */
  right: 25px; /* igual al right del botón de WhatsApp */
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: transform 0.2s ease, background 0.3s ease;
}

.chatbot-open:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
/* === CHATBOT UNIFICADO === */
.chatbot-container {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  font-family: 'Montserrat', sans-serif;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.3s ease-out;
  z-index: 999;
}

.chatbot-header {
  background: #25D366;
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chatbot-body {
  background: #e6ffed;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-message {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 90%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-message.bot {
  background: white;
  color: #333;
  align-self: flex-start;
}

.chat-message.user {
  background: #dcf8c6;
  color: #333;
  align-self: flex-end;
}

.chat-input {
  display: flex;
  gap: 8px;
}

.chat-input input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.chat-input button {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.whatsapp-btn {
  background-color: #128C7E;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background-color: #0d6e62;
}

/* BOTÓN FLOTANTE */
.chatbot-open {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: transform 0.2s ease, background 0.3s ease;
}

.chatbot-open:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === CHATBOT === */
.chatbot-container {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  font-family: 'Montserrat', sans-serif;
  display: none;
  overflow: hidden;
  z-index: 999;
}

.chatbot-header {
  background: #25D366;
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Área de mensajes */
.chatbot-body {
  background: #e6ffed;
  padding: 15px;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-message {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 90%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-message.bot {
  background: white;
  color: #333;
  align-self: flex-start;
}

.chat-message.user {
  background: #dcf8c6;
  color: #333;
  align-self: flex-end;
}

/* Input y botón enviar */
.chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #f6f6f6;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.chat-input button {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

/* Botón fijo de WhatsApp */
.whatsapp-btn {
  background-color: #128C7E;
  color: #fff;
  border: none;
  border-radius: 0 0 15px 15px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  border-top: 1px solid #ddd;
}

.whatsapp-btn:hover {
  background-color: #0d6e62;
}

/* Botón flotante */
.chatbot-open {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: transform 0.2s ease, background 0.3s ease;
}

.chatbot-open:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}
/* === HEADER Y LOGO LIMPIOS === */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  height: 100px; /* 🔹 más alto para dejar respirar el logo */
}

/* Logo principal */


/* Menú de navegación */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f28c2e;
}

/* RESPONSIVE */
@media (max-width: 768px) 
  .header {
    padding: 10px 25px;
    height: 85px;
  }
  /* === LOGO PRINCIPAL === */
.logo-img {
  height: 130px !important; /* 🔹 tamaño final, agrandado */
  width: auto !important;
  object-fit: contain;
  display: block;
  transform: translateY(5px); /* leve ajuste vertical */
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 90px !important; /* más chico en móvil */
  }
}
.logo-img {
  height: 130px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 90px !important;
  }
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f28c2e;
}

.social-icons a i {
  margin-right: 6px;
}

.social-icons a:last-child {
  font-size: 0.95rem; /* el texto del mail se ve más equilibrado */
  font-weight: 500;
}
.footer-bottom {
  width: 100%;
  background-color: #0b0b0b; /* mismo color del fondo del footer */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* línea sutil arriba */
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.chatbot-container {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
  display: none;
  z-index: 999;
  overflow: hidden;
}

.chatbot-header {
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-message.bot {
  background: #f6fff9;
  color: #333;
  border-radius: 15px;
  margin: 20px;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 0 15px 15px;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.chatbot-open {
  position: fixed;
  bottom: 95px;
  right: 85px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}
/* ===========================
   🔹 MENÚ HAMBURGUESA RESPONSIVE
=========================== */

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .header {
    background-color: #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 25px;
  }

  .nav {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .logo-img {
    height: 60px;
    width: auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0,0,0,0.95);
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    text-align: center;
    gap: 15px;
    padding: 20px 0;
  }

  .menu.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .menu a {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .menu a:hover {
    color: #f28c2e;
  }

  /* Para que el hero no quede tapado */
  .hero {
    margin-top: 100px;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* ===========================
   🔹 MENÚ HAMBURGUESA RESPONSIVE
=========================== */

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
  /* Header fijo */
  .header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 25px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-img {
    height: 60px;
    width: auto;
  }

  /* Mostrar botón hamburguesa */
  .menu-toggle {
    display: block;
  }

  /* Menú oculto */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    gap: 30px;
    padding: 0;
    margin: 0;
  }

  .menu.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .menu a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
  }

  .menu a:hover {
    color: #f28c2e;
  }

  /* Hero ajustado */
  .hero {
    margin-top: 100px;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Chatbot oculto en mobile */
  .chatbot-container {
    display: none !important;
  }

  .chatbot-open {
    display: none !important;
  }
}
/* ===========================
   🔹 RESPONSIVE COMPLETO (MOBILE)
=========================== */

@media (max-width: 991px) {

  /* HEADER */
  .header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 25px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-img {
    height: 60px;
    width: auto;
  }

  /* BOTÓN HAMBURGUESA */
  .menu-toggle {
    display: block;
    font-size: 1.9rem;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
  }

  /* MENÚ MOBILE */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .menu.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .menu li {
    list-style: none;
  }

  .menu a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 500;
  }

  .menu a:hover {
    color: #f28c2e;
  }

  /* HERO */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    min-height: 90vh;
    padding: 40px 20px;
    margin-top: 100px;
    overflow: hidden;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* CHATBOT OCULTO EN MOBILE */
  .chatbot-container {
    display: none !important;
  }

  /* ✅ Botón flotante visible */
  .chatbot-open {
    display: flex !important;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1200;
  }

  .chatbot-open img {
    width: 30px;
    height: 30px;
  }

  /* GALERÍA Y SECCIONES */
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .servicio-card img {
    width: 100%;
    height: auto;
  }

  /* FOOTER */
  .footer-pro {
    text-align: center;
    padding: 40px 20px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-logo-img {
    height: 70px;
    width: auto;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .footer-right {
    text-align: center;
  }
}
/* === BOTÓN DE WHATSAPP SOLO EN MOBILE === */
@media (max-width: 991px) {
  .chatbot-container {
    display: none !important; /* el chatbot completo no aparece */
  }

  .chatbot-open {
    display: flex !important;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1200;
    animation: pulse 2.2s infinite ease-in-out;
  }

  .chatbot-open img {
    width: 30px;
    height: 30px;
  }

  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
}
/* === BOTÓN DE WHATSAPP SOLO EN MOBILE === */
@media (max-width: 991px) {
  .chatbot-container {
    display: none !important; /* el chatbot completo no aparece */
  }

  .chatbot-open {
    display: flex !important;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1200;
    animation: pulse 2.2s infinite ease-in-out;
  }

  .chatbot-open img {
    width: 30px;
    height: 30px;
  }

  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
}
/* ==============================
   ✅ REPARACIÓN FINAL RESPONSIVE + WHATSAPP
============================== */

@media (max-width: 991px) {

  /* Header */
  .header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 25px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    font-size: 1.9rem;
    color: #fff;
    cursor: pointer;
    z-index: 1100;
  }

  /* Menú hamburguesa */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.97);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    gap: 30px;
  }

  .menu.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* HERO */
  .hero {
    margin-top: 90px;
    padding: 40px 20px;
    text-align: center;
  }

  /* Oculta el chatbot clásico */
  .chatbot-container {
    display: none !important;
  }

  /* ✅ BOTÓN FLOTANTE DE WHATSAPP ACTIVO EN MOBILE */
  .chatbot-open {
    display: flex !important;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1200;
    animation: pulse 2.2s infinite ease-in-out;
  }

  .chatbot-open img {
    width: 32px;
    height: 32px;
  }

  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
}
/* === BOTÓN FLOTANTE WHATSAPP UNIVERSAL === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  transition: transform 0.3s ease;
  animation: pulse 2.2s infinite ease-in-out;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Animación de latido */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* ============================
   🔹 BOTÓN FLOTANTE WHATSAPP RESPONSIVE — AJUSTE DE MÁRGENES
============================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  transition: all 0.3s ease;
  animation: pulse 2.2s infinite ease-in-out;
  cursor: pointer;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Animación tipo "latido" */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 100px;  /* 🔹 más arriba del borde inferior */
    right: 30px;    /* 🔹 un poco más separado del lateral */
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 115px;  /* 🔹 aún más arriba en pantallas pequeñas */
    right: 35px;    /* 🔹 se despega un poco más del borde derecho */
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
/* Desactivar parallax solo en celulares */
@media (max-width: 768px) {
  .parallax-frase {
    background-attachment: scroll !important; /* desactiva el efecto */
    background-position: center;
    background-size: cover;
  }
}
/* === MOSTRAR DESCRIPCIÓN SIEMPRE VISIBLE EN MOBILE === */
@media (max-width: 768px) {
  .servicio-card {
    position: relative;
    overflow: hidden;
  }

  .servicio-card .overlay-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 30%;
    padding: 15px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0));
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .servicio-card .overlay-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #fff;
  }

  .servicio-card .overlay-card p {
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
  }

  .servicio-card img {
    filter: brightness(0.9);
  }

  /* Elimina cualquier efecto hover */
  .servicio-card:hover .overlay-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ✅ FORZAR VISIBILIDAD DE LAS DESCRIPCIONES EN MOBILE */
@media (max-width: 768px) {
  .overlay-card p {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .overlay-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .servicio-card:hover .overlay-card p {
    opacity: 1 !important;
    transform: none !important;
  }

  .servicio-card:hover img {
    filter: brightness(0.9) !important;
    transform: none !important;
  }
}
/* ✅ CORRIGE ESPACIO NEGRO BAJO LAS TARJETAS EN MOBILE */
@media (max-width: 768px) {
  .servicio-card {
    height: auto !important;
    max-height: none !important;
  }

  .servicio-card img {
    height: auto;
    display: block;
  }

  .servicio-card .overlay-card {
    bottom: 0;
    width: 100%;
    padding: 10px 12px 14px; /* 🔹 menos padding */
    min-height: auto !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 80%, rgba(0,0,0,0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .servicio-card .overlay-card h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .servicio-card .overlay-card p {
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
  }
}
/* ✅ AJUSTE VISUAL DE LA GALERÍA (ALTURAS IGUALES Y ALINEADAS) */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  justify-items: center;
  align-items: stretch; /* 🔹 iguala alturas */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  height: 360px; /* 🔹 altura pareja */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #000;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.galeria-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.galeria-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 0 0 14px 14px;
}

.galeria-overlay p {
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .galeria-item {
    height: 280px; /* 🔹 más bajo en mobile */
  }

  .galeria-overlay p {
    font-size: 0.85rem;
    line-height: 1.2;
  }
}
/* ✅ AJUSTE DE FOOTER SOLO PARA MOBILE */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-bottom: 10px;
  }

  .footer-left img {
    height: 85px;
    margin-bottom: 10px;
  }

  .footer-left p {
    max-width: 85%;
    margin: 0 auto 10px;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #bbb;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .footer-links a {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 10px;
  }

  .social-icons a {
    color: #ccc;
    font-size: 1.3rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #f28c2e;
  }

  .footer-email {
    display: block;
    font-size: 0.85rem;
    text-align: center;
    color: #bbb;
    word-break: break-all;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: #777;
    padding: 0 20px;
  }
}
/* ✅ GALERÍA — SOLO DESKTOP: 3 columnas */
@media (min-width: 992px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .galeria-item img {
    height: 380px; /* todas las fotos del mismo alto */
    object-fit: cover;
  }
}
