/* Reseteo básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: transparent;
  overflow-x: hidden;
  max-width: 100%;
}

/* Sección del formulario */
.contact-section {
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-sizing: border-box;
  margin-top: -200px;
}

/* Video de fondo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay oscuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
}

.navbar .logo img {
  height: 180px;
}

.contact-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: #ff4f5a;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* Menú hamburguesa */
.hamburger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* fondo oscuro semi-transparente */
  backdrop-filter: blur(10px);    /* efecto de vidrio borroso */
  -webkit-backdrop-filter: blur(10px);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
  color: #ffd153;
  display: flex;
  flex-direction: column;
  border-left: 2px solid #ffd153;
}

.drawer.open {
  right: 0;
}

.drawer ul {
  list-style: none;
  padding: 0 20px;
}

.drawer ul li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 18px;
  color: #ffd153;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
  cursor: pointer;
  margin-top: 50px;
}

.drawer ul li i {
  margin-right: 12px;
  min-width: 20px;
}

.drawer ul li a {
  text-decoration: none;
  color: inherit;
}

.drawer ul li:hover {
  color: #ffc321;
}

/* Botón de cierre */
.close-btn {
  background-color: transparent;
  color: #ffd153;
  border: none;
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  transition: background-color 0.3s;
}

.close-btn:hover {
  color: #ffc321;
}

/* Hero */

.hero-content1 {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  padding-bottom: 40px;
  margin-top: -100px;

}

.hero-content1 h1 {
  font-size: 40px;

  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd153 0%, #ffc321 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content1 p {
  margin-top: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); /* Responsivo */
  text-align: justify;
  justify-content: center;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #efefef;
  font-weight: 400;
  max-width: 800px; /* Limita el ancho para mejor legibilidad */
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  margin-top: -220px;
  padding-bottom: 40px;
}

.hero-content h1 {
  font-size: 40px;

  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd153 0%, #ffc321 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
  margin-top: 20px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); /* Responsivo */
  justify-content: center;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #efefef;
  font-weight: 400;
  max-width: 800px; /* Limita el ancho para mejor legibilidad */
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover para el h1 */
.hero-content h1:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Versión alternativa sin gradiente (más simple) */
.hero-content h1.simple {
  background: none;
  -webkit-text-fill-color: initial;
  color: #1a202c;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Para tema oscuro */
@media (prefers-color-scheme: dark) {
  .hero-content h1.simple {
    color: #f7fafc;
  }
  
  .hero-content p {
    color: #cbd5e0;
  }
}

.hero-button {
  background-color: #ffd153;
  color: #333;
  padding: 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.hero-button:hover {
  background-color: transparent;
  border-color:#ffd153;
  color: #fefefe
}

/* Inputs y botones */
input {
  padding: 15px;
  margin: 10px 0;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #ffd153;
  color: #333;
  padding: 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  border: 2px solid transparent;
  margin-top: 10px;
}

button:hover {
  background-color: transparent;
  border-color:#ffd153;
  color: #fefefe
}

/* Tabla */
table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.9);
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.modal-content p {
  margin-bottom: 20px;
  color: #555;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.modal1 {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-contenido {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-contenido h2 {
  color: #4CAF50;
  margin-bottom: 10px;
}

.boton-cerrar1 {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  justify-content: center;
  margin-top: 10px;
}

.boton-cerrar1:hover {
  background-color: #27ae60;
}

.btn-confirm {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-cancel {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Sección del formulario */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* Formulario */
.contact-form {
  background: rgba(0, 0, 0, 0.1); /* fondo oscuro semi-transparente */
  backdrop-filter: blur(10px);    /* efecto de vidrio borroso */
  -webkit-backdrop-filter: blur(10px); /* compatibilidad con Safari */
  padding: 2rem;
  border: 2px solid #ffd153;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  margin-top: 100px;
}


.contact-form h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: #fefefe;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 500;
  width: 100%; /* Fuerza a ocupar todo el ancho del form */
  max-width: 100%; /* Se alinea con los inputs */
  box-sizing: border-box;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1rem;

}

.contact-form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: #ffd153;
  color: #333;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffc321;
}

.back-button {
  display: block; /* hace que respete el width: 100% */
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: #ffd153;
  color: #333;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #ffc321;
}




/* Loader para redirección */
.loader {
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #d4af7f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.redirect-message {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  display: none;
}

.footer {
  background: transparent;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  position: relative;
  margin-top: 20px;
  z-index: 1;
}

.mensaje {
  padding: 15px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.mensaje.ok {
  background-color: #ccffcc;
  color: #006600;
}

.mensaje.error {
  background-color: #ffcccc;
  color: #cc0000;
}

.mensaje.alerta {
  background-color: #ffe0b3;
  color: #cc6600;
}


.hero-content label {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
  max-width: 400px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Estilos mejorados para inputs y select */
.hero-content input,
.hero-content select,
.hero-content button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  margin: 10px 0;
  width: 350px;
  max-width: 100%;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer; /* solo para botones */
}

/* Efectos hover y focus para inputs y select */
.hero-content input:hover,
.hero-content select:hover {
  border-color: #ffd153;
  box-shadow: 0 3px 8px rgba(255, 209, 83, 0.3);
}

.hero-content input:focus,
.hero-content select:focus {
  outline: none;
  border-color: #ffd153;
  box-shadow: 0 0 0 3px rgba(255, 209, 83, 0.2);
  background-color: #fff;
}

/* Estilos específicos para el select */
.hero-content select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Placeholder del select cuando no hay opción seleccionada */
.hero-content select option[disabled] {
  color: #999;
}

/* Validación visual para campos requeridos */
.hero-content input:invalid,
.hero-content select:invalid {
  border-color: #ff6b6b;
}

.hero-content input:valid,
.hero-content select:valid {
  border-color: #51cf66;
}

/* Animación sutil para cuando se completan los campos */
.hero-content input:valid,
.hero-content select:valid {
  animation: validField 0.3s ease;
}

@keyframes validField {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Mejoras específicas para el input de celular */
.hero-content input[type="tel"] {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 45px;
}

/* Contenedor de los campos para mejor organización */
.hero-content .form-group {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
}

/* Responsive específico para los nuevos campos */
@media (max-width: 768px) {
  .hero-content label {
    font-size: 1rem;
    margin-top: 15px;
  }
  
  .hero-content input,
  .hero-content select,
  .hero-content button {
    padding: 12px;
    font-size: 16px;
    justify-content: center; /* Evita zoom en iOS */
  }
  
  .hero-content input[type="tel"],
  .hero-content select {
    background-size: 14px;
    padding-right: 40px;
  }
}

/* Mejora visual para cuando el formulario está completo */
.hero-content.form-complete {
  animation: formReady 0.5s ease;
}

/* Estilos para el botón deshabilitado */
button:disabled,
button.disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  border-color: #ccc !important;
  pointer-events: none;
}

button:disabled:hover,
button.disabled:hover {
  background-color: #ccc !important;
  color: #666 !important;
  border-color: #ccc !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Animación sutil cuando el botón se habilita */
button:not(:disabled):not(.disabled) {
  transition: all 0.3s ease;
}

button:not(:disabled):not(.disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 209, 83, 0.3);
}

@keyframes formReady {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    align-items: center;
  }
  .navbar {
    padding: 15px 30px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-button {
    padding: 12px 25px;
  }
  .contact-form {
    padding: 1.5rem;
  }
}

.contenedor-dividido {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contenedor-dividido {
    flex-direction: row;
    align-items: flex-start;
    margin: 20px;
  }

  .lado-izquierdo, .lado-derecho {
    width: 50%;
  }

  .divisor {
    width: 1px;
    background-color: #ccc;
    height: auto;
  }
}

.lado-izquierdo p {
  text-align: left;
  line-height: 1.6;
}

#consultaForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 600px) {
  #consultaForm {
    align-items: center;
  }

  .hero-content {
    margin-top: -30px;
    margin-bottom: 40px;
  }
  .hero-content p {
    margin-bottom: -20px;
  }

  .hero-content input,
  .hero-content select,
  .hero-content button {
    width: 90%;
    max-width: 300px;
  }

}

@media screen and (max-width: 768px) {
  .hero-content1 h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .hero-content1 h1 {
    font-size: 26px;
  }
}

/* Hola version */

.servicios-container {
  position: relative;
  z-index: 1;
  padding: 2rem;
  margin-top: -240px;
  min-height: 100vh;
}

/* Header de servicios */
.servicios-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 120px;
}

.servicios-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd153 0%, #ffc321 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.servicios-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #efefef;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Grid de servicios */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Tarjeta de servicio */
.servicio-card {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 209, 83, 0.3);
  border-radius: 15px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd153, #ffc321);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.servicio-card:hover::before {
  transform: scaleX(1);
}

.servicio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 209, 83, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Icono del servicio */
.servicio-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd153, #ffc321);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(255, 209, 83, 0.3);
}

.servicio-icon i {
  font-size: 1.8rem;
  color: #333;
}

/* Títulos del servicio */
.servicio-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd153;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servicio-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Texto del servicio */
.servicio-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

/* Lista de beneficios */
.servicio-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.servicio-card ul li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #e8e8e8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.servicio-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #ffd153;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Texto destacado */
.servicio-destacado {
  background: rgba(255, 209, 83, 0.1);
  border-left: 4px solid #ffd153;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.servicio-destacado strong {
  color: #ffd153;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA del servicio */
.servicio-cta {
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  margin: 1.5rem 0;
  text-align: center;
}

.servicio-cta strong {
  color: #ffd153;
}

/* Botón del servicio */
.servicio-button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: #ffd153;
  color: #333;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

.servicio-button:hover {
  background-color: transparent;
  border-color: #ffd153;
  color: #ffd153;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 209, 83, 0.3);
}

/* CTA Final */
.servicios-cta-final {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 2px solid rgba(255, 209, 83, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.servicios-cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffd153;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.servicios-cta-final p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive para servicios */
@media (max-width: 768px) {
  .servicios-container {
    padding: 1rem;
    margin-top: -180px;
  }
  
  .servicios-header {
    margin-bottom: 2rem;
    padding-top: 80px;
  }
  
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .servicio-card {
    padding: 1.5rem;
  }
  
  .servicio-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .servicio-icon i {
    font-size: 1.5rem;
  }
  
  .servicio-card h3 {
    font-size: 1.2rem;
  }
  
  .servicio-card h4 {
    font-size: 1rem;
  }
  
  .servicios-cta-final {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem 0 1rem;
  }
}

@media (max-width: 480px) {
  .servicios-container {
    padding: 0.5rem;
  }
  
  .servicios-grid {
    gap: 1rem;
  }
  
  .servicio-card {
    padding: 1.2rem;
  }
  
  .servicio-card ul li {
    font-size: 0.85rem;
    padding: 0.3rem 0 0.3rem 1.2rem;
  }
  
  .servicio-destacado {
    padding: 0.8rem;
  }
  
  .servicios-cta-final {
    margin: 1rem 0.5rem 0 0.5rem;
    padding: 1.5rem 1rem;
  }
}