body { 
  background: linear-gradient(180deg, #0b0018 0%, #000000 100%); 
  color: #ffffff; 
}

.glass-card { 
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.836)); 
  border: 1px solid rgba(255,255,255,0.1); 
  backdrop-filter: blur(10px); 
}

.lightbox { 
  position: fixed; 
  inset: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: rgba(0,0,0,0.95); 
  z-index: 50; 
  padding: 1rem; 
}

.hidden { 
  display: none; 
}

.reel { 
  aspect-ratio: 9/16; 
  width: 100%; 
  max-width: 220px; 
  border-radius: 12px; 
  overflow: hidden; 
}

@media (min-width: 768px) {
  .reel { 
    max-width: 260px; 
  }
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}
  /* Ocultar scrollbar horizontal */
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* === Estilos Base === */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
}

/* === Glass Effect === */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* === Reels === */
.reel {
  min-width: 180px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .reel {
    min-width: 220px;
    height: 390px;
  }
}

/* === Galería === */
.gallery-item {
  min-width: 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
}

@media (min-width: 640px) {
  .gallery-item {
    min-width: 400px;
    height: 500px;
  }
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* === Botón WhatsApp Flotante === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

/* === Scrollbar Hide === */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* === Smooth Scroll === */
html {
  scroll-behavior: smooth;
}
.gradient-circle {
  width: 12rem;  /* 16px -> 4rem */
  height: 4rem; /* 16px -> 4rem */
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); /* Degradado de negro a transparente */
  border-radius: 50%; /* Redondea el contenedor a un círculo */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gradient-circle img {
  width: 2.5rem; /* Ajusta el tamaño del ícono */
  height: 2.5rem;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 2s ease-out both;
}
  .reel {
    width: 140px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }

  @media (min-width: 640px) {
    .reel {
      width: 180px;
      height: 300px;
    }
  }
  @media (max-width: 640px) {
  .glass-card div {
    line-height: 1.3 !important;
  }
}
  #testimonialCarousel > div {
    width: 260px;
  }

  @media (min-width: 640px) {
    #testimonialCarousel > div {
      width: 320px;
    }
  }

  #mobileMenu {
    transition: all 0.3s ease;
  }

  #mobileMenu a:last-child {
    max-width: 400px;        /* Limita el ancho máximo */
    margin: 12px auto 8px;   /* Aire arriba y abajo centrado */
    padding: 8px 12px;          /* Padding vertical para que no quede pegado */
    display: block;           /* Asegura que el max-width funcione */
  }
  .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  align-items: center;
  flex-shrink: 0;
  width: 20rem; /* 320px */
  height: 150px; /* altura fija */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden; /* corta lo que se salga */
}

.testimonial-text {
  flex: none; /* no crecer */
  max-height: 80px; /* limita espacio del texto */
  overflow-y: auto; /* scroll interno si es necesario */
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
}

.testimonial-separator {
  width: 40px;
  height: 2px;
  background-color: white;
  margin: 0.5rem 0;
}

.testimonial-client {
  flex: none;
  font-weight: bold;
}
/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #dfdfdf;
}

select[multiple] {
  height: 120px;
}

/* Button */
button[type="submit"] {
  padding: 12px 20px;
  background-color: #000000;
  color: #ebebeb;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #000000;
  transform: translateY(-2px);
}
/* Modal general */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
}

.modal.hidden {
  display: none;
}

/* Contenido del modal */
.modal-content {
  max-width: 500px;
  width: 90%;
  position: relative;
}

/* Botón cerrar */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}
.dropdown {
  position: relative;
  width: 100%;
}

.dropdown-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(0,0,0,0.5);
  color: white;
  cursor: pointer;
  text-align: left;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  margin-top: 0.25rem;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 20;
}

.dropdown-menu label {
  display: block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: white;
}

.dropdown-menu label:hover {
  background-color: rgba(255,255,255,0.1);
}
/* --- CONTENEDOR --- */
.wpp-container {
  position: fixed;
  bottom: 35px;  /* más aire del borde */
  right: 30px;   /* más aire del borde */
  z-index: 99999;
}

/* --- BOTÓN FLOTANTE --- */
.wpp-btn {
  background: #000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  border: 2px solid #0d914f;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  animation: wppPulse 1.9s infinite ease-in-out;
}

.wpp-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 15px rgba(0,0,0,0.55);
}

/* Ícono */
.wpp-icon {
  width: 30px;
  height: 30px;
}

/* --- TOOLTIP --- */
.wpp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Tooltip flechita */
.wpp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(0,0,0,0.85);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Mostrar tooltip */
.wpp-container:hover .wpp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px);
}

/* --- ANIMACIÓN SUAVE --- */
@keyframes wppPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}
