@charset "UTF-8";
/**
 * Autor: Dani Benavides Urdaneta y Ainoa Urribarrí Casado
 * Archivo principal de estilos SASS para el tema Atp-next-hybrid-meg.
 */
/* Variables */
/* Importar componentes */
/* Estilos para el Flujo de Compra de Tarjetas Regalo - Diseño Moderno */
/* Variables específicas para el flujo - Paleta Medical Esthetic Group */
/* Azul Oscuro Principal */
/* Azul Gris Oscuro */
/* Marrón Elegante */
/* Blanco Puro */
/* Gris Muy Claro */
/* Gris Medio */
/* Azul Gris Oscuro */
/* Gris para texto secundario */
/* Borde sutil */
/* Verde de Éxito */
/* Rojo Corporativo */
/* Contenedor principal del flujo */
.gift-card-flow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: transparent;
  border: none;
  position: relative;
}
.gift-card-flow-container h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: 300;
  color: #2c3e50;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Indicador de progreso */
.flow-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.flow-progress .progress-step {
  display: flex;
  align-items: center;
  margin: 0 15px;
}
.flow-progress .progress-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 3px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
}
.flow-progress .progress-step .step-number.active {
  background: #1a365d;
  border-color: #1a365d;
  color: #ffffff;
  transform: scale(1.1);
}
.flow-progress .progress-step .step-number.completed {
  background: #28a745;
  border-color: #28a745;
  color: #ffffff;
}
.flow-progress .progress-step .step-label {
  margin-left: 10px;
  font-weight: 500;
  color: #2c3e50;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.flow-progress .progress-step.step-active .step-label {
  text-decoration: underline;
  text-decoration-color: #1a365d;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  color: #1a365d;
}
.flow-progress .progress-step:not(:last-child) .step-number::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}
.flow-progress .progress-step.step-completed:not(:last-child)::after,
.flow-progress .progress-step.step-active:not(:last-child)::after {
  background: #1a365d;
}

/* Selección de productos - Paso 1 */
.product-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  justify-items: center;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* Cuando hay exactamente 2 tarjetas */
}
.product-selection:has(.product-option:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}
.product-selection {
  /* Cuando hay exactamente 1 tarjeta */
}
.product-selection:has(.product-option:only-child) {
  grid-template-columns: 1fr;
  max-width: 400px;
}
.product-selection {
  /* Fallback para navegadores que no soportan :has() */
}
.product-selection .product-option:only-child {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 400px;
}
.product-selection .product-option:nth-child(2):last-child {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 800px;
}

.product-option {
  position: relative;
  padding: 0;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  width: 100%;
  max-width: 350px;
  /* Efecto de hover y selección */
}
.product-option:hover {
  border-color: #1a365d;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(26, 54, 93, 0.12), 0 4px 8px rgba(26, 54, 93, 0.08);
}
.product-option {
  /* Estado seleccionado */
}
.product-option.selected {
  border-color: #1a365d;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 54, 93, 0.15), 0 4px 8px rgba(26, 54, 93, 0.1);
}
.product-option.selected::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: #1a365d;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-option.selected::before::after {
  content: "✓";
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-option input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.product-option {
  /* Imagen circular superior */
}
.product-option .product-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 20px;
}
.product-option .product-image .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dee2e6;
  transition: all 0.3s ease;
}
.product-option .product-image {
  /* Ícono por defecto cuando no hay imagen */
}
.product-option .product-image .default-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #dee2e6;
  transition: all 0.3s ease;
}
.product-option .product-image .default-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}
.product-option .product-info {
  flex: 1;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Centrar contenido cuando no hay imagen */
}
.product-option .product-info.no-image {
  padding-top: 30px;
}
.product-option .product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.product-option .product-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}
.product-option {
  /* Separador decorativo */
}
.product-option .separator {
  width: 60px;
  height: 1px;
  background: #dee2e6;
  margin: 0 auto 20px;
}
.product-option .product-price {
  background: #1a365d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
  transition: all 0.3s ease;
}
.product-option {
  /* Botón de acción */
}
.product-option .product-button {
  width: 100%;
  background: #1a365d;
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-option .product-button:hover {
  background: rgb(17.0857142857, 35.4857142857, 61.1142857143);
  color: #ffffff;
  transform: translateY(-1px);
}
.product-option .product-button:active {
  background: rgb(12.6285714286, 26.2285714286, 45.1714285714);
  color: #ffffff;
}

/* Formulario - Paso 2 */
#gift-card-step-2 .form-section {
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#gift-card-step-2 .form-section h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
}
#gift-card-step-2 .form-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #1a365d, #2d3748);
  border-radius: 2px;
}
#gift-card-step-2 .form-section .form-group {
  margin-bottom: 20px;
}
#gift-card-step-2 .form-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.95rem;
}
#gift-card-step-2 .form-section .form-group input, #gift-card-step-2 .form-section .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}
#gift-card-step-2 .form-section .form-group input:focus, #gift-card-step-2 .form-section .form-group textarea:focus {
  outline: none;
  border-color: #1a365d;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1), 0 4px 12px rgba(37, 211, 102, 0.15);
  transform: translateY(-1px);
}
#gift-card-step-2 .form-section .form-group input::placeholder, #gift-card-step-2 .form-section .form-group textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}
#gift-card-step-2 .form-section .form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
#gift-card-step-2 .form-section p {
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
#gift-card-step-2 .form-actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #dee2e6;
}

/* Botones mejorados */
.gc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  /* Efecto de brillo */
}
.gc-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.gc-button:hover::before {
  left: 100%;
}
.gc-button {
  /* Botón primario - Estilo elegante y profesional */
}
.gc-button:not(.secondary) {
  background: #1a365d;
  color: #ffffff;
  border: 2px solid #1a365d;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}
.gc-button:not(.secondary):hover {
  background: rgb(17.0857142857, 35.4857142857, 61.1142857143);
  border-color: rgb(17.0857142857, 35.4857142857, 61.1142857143);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.25);
}
.gc-button:not(.secondary):active {
  transform: translateY(0);
  background: rgb(12.6285714286, 26.2285714286, 45.1714285714);
  color: #ffffff;
}
.gc-button:not(.secondary):disabled {
  background: #e9ecef;
  border-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.gc-button {
  /* Botón secundario - Estilo elegante */
}
.gc-button.secondary {
  background: #ffffff;
  color: #2c3e50;
  border: 2px solid #dee2e6;
}
.gc-button.secondary:hover {
  background: #f8f9fa;
  border-color: #1a365d;
  color: #1a365d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
}
.gc-button.secondary:active {
  color: #1a365d;
}

/* Estados de carga */
.gc-button.loading {
  pointer-events: none;
}
.gc-button.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Mensajes de error y éxito */
.flow-message {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.flow-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #28a745;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.flow-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc3545;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-selection {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    /* En tablets, máximo 2 columnas */
  }
  .product-selection:has(.product-option:nth-child(3)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gift-card-flow-container {
    margin: 20px;
    padding: 25px;
  }
  .gift-card-flow-container h2 {
    font-size: 1.8rem;
  }
  .product-selection {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    /* En móvil, siempre 1 columna */
  }
  .product-selection:has(.product-option:nth-child(2):last-child), .product-selection:has(.product-option:only-child) {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .product-option {
    padding: 20px;
    max-width: 100%;
  }
  #gift-card-step-2 .form-section {
    padding: 20px;
  }
  #gift-card-step-2 .form-actions {
    flex-direction: column;
    gap: 15px;
  }
  #gift-card-step-2 .form-actions .gc-button {
    width: 100%;
    min-width: auto;
  }
  .flow-progress {
    flex-direction: column;
    gap: 15px;
  }
  .flow-progress .progress-step {
    margin: 0;
  }
  .flow-progress .progress-step .step-number::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .gift-card-flow-container {
    margin: 10px;
    padding: 20px;
    border-radius: 16px;
  }
  .product-option {
    padding: 15px;
  }
  .product-option .product-title {
    font-size: 1.2rem;
  }
}
/* Estilos base - NO aplicar estilos globales a body para evitar conflictos con Elementor */
/* Los estilos de Elementor deben tener prioridad */

/* Widget de WhatsApp - Estilos completos */
#whatsapp-widget-isolated-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
#whatsapp-widget-isolated-container #whatsapp-floating-button {
  position: relative;
}
#whatsapp-widget-isolated-container .whatsapp-button {
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 60px;
  min-height: 60px;
  justify-content: center;
}
#whatsapp-widget-isolated-container .whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
#whatsapp-widget-isolated-container .whatsapp-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}
#whatsapp-widget-isolated-container .whatsapp-button svg {
  flex-shrink: 0;
}
#whatsapp-widget-isolated-container .whatsapp-button span {
  font-weight: 600;
  white-space: nowrap;
  color: white;
  font-size: 14px;
}

/* Modal de WhatsApp */
.whatsapp-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.whatsapp-modal-overlay.hidden {
  display: none !important;
}
.whatsapp-modal-overlay {
  /* Cuando el modal está visible (sin la clase hidden) */
}
.whatsapp-modal-overlay:not(.hidden) {
  display: flex !important;
}

.whatsapp-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.whatsapp-modal-header {
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
.whatsapp-modal-header h3 {
  margin: 0;
  color: #25D366;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  flex: 1;
}
.whatsapp-modal-header .close-modal-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: absolute;
  right: 0;
  top: 20px;
}
.whatsapp-modal-header .close-modal-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

.whatsapp-modal-body {
  padding: 0 20px 20px;
}
.whatsapp-modal-body .form-group {
  margin-bottom: 20px;
}
.whatsapp-modal-body .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
.whatsapp-modal-body .form-group input, .whatsapp-modal-body .form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.whatsapp-modal-body .form-group input:focus, .whatsapp-modal-body .form-group select:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}
.whatsapp-modal-body .form-group input[type=checkbox] {
  width: auto;
  margin-right: 8px;
  transform: scale(1.2);
}
.whatsapp-modal-body .form-group label:has(input[type=checkbox]) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.whatsapp-modal-body .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
}
.whatsapp-modal-body .form-actions button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.whatsapp-modal-body .form-actions button.btn-primary {
  background-color: #25D366;
  color: white;
}
.whatsapp-modal-body .form-actions button.btn-primary:hover:not(:disabled) {
  background-color: #128C7E;
  transform: translateY(-1px);
}
.whatsapp-modal-body .form-actions button.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.whatsapp-modal-body .form-actions button.btn-secondary {
  background-color: #f5f5f5;
  color: #666;
}
.whatsapp-modal-body .form-actions button.btn-secondary:hover {
  background-color: #e5e5e5;
}

/* Caja de mensajes */
.message-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  text-align: center;
  max-width: 400px;
  animation: messageSlideIn 0.3s ease-out;
}
.message-box.hidden {
  display: none !important;
}
.message-box.success {
  background-color: #25D366;
}
.message-box.error {
  background-color: #e74c3c;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  #whatsapp-widget-isolated-container {
    bottom: 15px;
    right: 15px;
  }
  #whatsapp-widget-isolated-container .whatsapp-button {
    min-width: 50px;
    min-height: 50px;
    padding: 10px 12px;
  }
  #whatsapp-widget-isolated-container .whatsapp-button span {
    font-size: 12px;
  }
  .whatsapp-modal-content {
    margin: 10px;
    max-width: none;
  }
  .whatsapp-modal-body .form-actions {
    flex-direction: column;
  }
  .whatsapp-modal-body .form-actions button {
    width: 100%;
  }
  .phone-input-container select {
    min-width: 100px;
    max-width: 120px;
    font-size: 13px;
    padding: 12px 6px 12px 10px;
    padding-right: 24px;
  }
  .phone-input-container input[type=tel] {
    font-size: 14px;
    padding: 12px 12px;
  }
}
/* Estilos para el selector de país y validación de teléfono */
.phone-input-container {
  display: flex;
  align-items: stretch;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  width: 100%;
}
.phone-input-container:focus-within {
  border-color: #25D366;
}
.phone-input-container select {
  border: none;
  outline: none;
  padding: 12px 8px 12px 12px;
  background-color: #f8f9fa;
  border-right: 1px solid #e1e5e9;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  width: auto;
  min-width: 110px;
  max-width: 130px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"%3e%3cpath fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  padding-right: 28px;
  flex-shrink: 0;
  font-size: 14px;
  overflow: visible;
  text-overflow: clip;
}
.phone-input-container input[type=tel] {
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
.phone-input-container input[type=tel].valid {
  background-color: #f0f9ff;
}
.phone-input-container input[type=tel].invalid {
  background-color: #fef2f2;
}

.phone-help {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

/* Estilos para el selector de país */
select#wa-country {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
select#wa-country:focus {
  outline: none;
  border-color: #25D366;
}
select#wa-country:hover {
  border-color: #cbd5e1;
}

/* Animaciones para validación */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
input.invalid {
  animation: shake 0.5s ease-in-out;
}

/* Estilos para los pasos del GDPR - Solo dentro del modal de WhatsApp */
.whatsapp-modal-content h2,
.whatsapp-modal-body h2,
.gdpr-step h2 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 900 !important;
  font-size: 25px !important;
  line-height: normal !important;
  color: #0f1214 !important;
  text-decoration: none !important;
  text-align: center !important;
  letter-spacing: 0 !important;
  margin-bottom: 1rem !important;
}

.gdpr-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #374151;
}

.privacy-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: normal;
}
.privacy-link:hover {
  color: #4b5563;
  text-decoration: underline;
}

.phone-link {
  color: #163254;
  text-decoration: underline;
  font-weight: 600;
}
.phone-link:hover {
  color: #1f2937;
}

/* Estilos para radio buttons personalizados */
.radio-group {
  margin-top: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.radio-option input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.radio-option input[type=radio]:checked {
  background-color: #000;
  border-color: #000;
}
.radio-option input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-option span {
  font-weight: normal;
  font-size: inherit;
}

/* Estilos para checkbox personalizado */
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #000;
  border-radius: 0.25rem;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
input[type=checkbox]:checked {
  background-color: #000;
  border-color: #000;
}
input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Clase para ocultar elementos */
.hidden {
  display: none !important;
}

/* Estilos para el header del modal */
.whatsapp-modal-header {
  text-align: center !important;
  position: relative;
}
.whatsapp-modal-header h3 {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.whatsapp-modal-header .close-modal-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.whatsapp-modal-header .close-modal-btn:hover {
  color: #000;
}

/* Mejoras para accesibilidad */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}
.form-group small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

/*# sourceMappingURL=main.css.map */
