@font-face {
  font-family: unua;
  src: url(../font/Montserrat-VariableFont_wght.ttf);
  font-family: dua;
  src: url(../font/Montserrat-Italic-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #fff !important;
}

body {
  font-family: 'unua' !important;
  font-size: 20px !important;
  color: #fff !important;
  min-height: 100vh;
  background-color: #202020 !important;
}

h2 {
  font-family: 'unua';
}

/* ===== BOTON FLOTANTE ===== */

#jc-floating-quote-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform-origin: right center;

  background-color: #249e2e;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;

  padding: 14px 22px;
  border: none;
  border-radius: 8px 0px 0px 8px;
  cursor: pointer;

  z-index: 9999;
}

#jc-floating-quote-btn:hover {
  background-color: #23c230;
}


/* ===== BOTON FLOTANTE FIN ===== */

/* ===== SECCIÓN HERO ===== */

.form-container {
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return {
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  width: 90%;
  color: #fff;
}

form h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

input,
textarea, select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  background: #fff !important;
}

.modal-content {
  background: #202020 !important;
}

.btn-switch {
  background: #249e2e !important;
  color: #fff !important;
}

.btn-switch:hover {
  background: #23c230;
}

.btnSubmit {
  margin: auto;
  width: 100% !important;
  padding: 12px;
  background: #249e2e !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btnSubmit:hover {
  background: #23c230;
}

/* ===== SECCIONES SIGUIENTES ===== */
.section {
  padding: 80px 10%;
}

.section.light {
  background: #f4f4f4;
}

.section.dark {
  background: #222;
  color: white;
}

/* Responsive */
@media (max-width: 800px) {
  .form-container {
    width: 100%;
    height: 100%;
    margin: 30px 0px 0px 0px;
  }
  form {
    margin-top: auto;
  }
}

/* ===============================
   CARRUSEL AISLADO (NO INVASIVO)
   =============================== */

.jc-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}

/* Track */
.jc-carousel .jc-carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Slide */
.jc-carousel .jc-slide {
  min-width: 100%;
  text-align: center;
}

/* Imagen */
.jc-carousel .jc-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Descripción */
.jc-carousel .jc-caption {
  background: #ffffff;
  color: #000000;
  padding: 12px;
  font-size: 16px;
}

/* ===============================
   BOTONES 100% BLINDADOS
   =============================== */

.jc-carousel .jc-nav {
  all: unset;
  /* elimina estilos globales */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 100;
  user-select: none;
}

.jc-carousel .jc-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Posición lateral */
.jc-carousel .jc-prev {
  left: 15px;
}

.jc-carousel .jc-next {
  right: 15px;
}

/* Descripción */
.jc-caption-2 {
  width: 100%;
  background: #ffffff;
  color: #000000;
  padding: 12px;
  font-size: 16px;
}