/* ================= VARIABLES ================= */
:root {
  --blue: #0376B5;
  --yellow: #FFCC00;
  --gray: #B4B4B4;
  --dark: #1f2933;
  --light: #f5f7fb;
  --btn-blue: #084986;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.05);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--light);
  color: #222;
  line-height: 1.6;
  padding-top: 70px;
  overflow-x: hidden; /* Bloqueo global de scroll horizontal */
}

/* ================= NAVIGATION ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-brand {
  font-weight: 700;
  color: var(--blue);
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  margin-left: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-btn {
  background: var(--blue);
  color: white !important;
  padding: 8px 22px;
  border-radius: 8px;
}

/* ================= HERO (MAIN PAGE) ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  color: white;
  background: transparent !important;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: transparent !important;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: -1;
}

.hero-logo {
  width: 70vw;
  max-width: 850px;
  margin-bottom: 30px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.hero-sub {
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0,0,0,.6);
}

.hero-btn {
  background: var(--btn-blue);
  color: white;
  padding: 18px 48px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: .25s;
  margin-top: 40px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  background-color: #ffffff;
  background-image: radial-gradient(var(--gray) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  padding: 100px 8%;
}

.container-impact {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.impact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: var(--blue);
}

.impact-icon-box {
  background: var(--light);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.impact-icon-box svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

/* ================= SERVICES SECTION (INDEX) ================= */
.services-video-container {
  position: relative;
  padding: 100px 8%;
  color: white;
  overflow: hidden;
  text-align: center;
  background: transparent !important;
}

.bg-video-services {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: transparent !important;
}

.services-video-container::after {
  display: none !important;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: white;
  color: #222;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: .3s;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-icon svg {
  width: 50px;
  height: 50px;
  color: var(--blue);
  margin-bottom: 15px;
}

.service-card .card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s ease;
  text-align: center;
}

.service-card:hover .card-content {
  max-height: 350px;
  opacity: 1;
  margin-top: 15px;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.learn-more-btn:hover {
  background-color: var(--btn-blue);
}

/* ================= SERVICE DETAIL PAGE ================= */
.service-main-title {
  font-size: 3rem;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 10px;
  text-align: left;
}

.service-subtitle {
  color: var(--yellow);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.service-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  text-align: left;
}

.service-grid-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.checklist-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-bottom: 5px solid var(--blue);
  text-align: left;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: var(--blue);
}

.checklist-card ul {
  list-style: none;
}

.checklist-card li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.checklist-card li i {
  color: var(--blue);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.upgrade-box {
  display: flex;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.upgrade-info-side {
  flex: 1;
  padding: 50px;
  background: var(--light);
}

.upgrade-grid-side {
  flex: 1.5;
  padding: 50px;
}

.add-on-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.item {
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  transition: 0.3s;
}

.item i {
  color: var(--blue);
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  display: inline-block;
}

.item span {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
}

.item:hover {
  background: var(--blue);
  color: white;
}

.item:hover i {
  color: white;
}

/* ================= FORMULARIO MULTI-PASO ================= */
.progress-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.progress-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.2);
  z-index: -1;
  border-radius: 4px;
}

.progress-step {
  width: 140px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.progress-step.active {
  background: linear-gradient(135deg, var(--yellow), #ffaa00);
  color: #1f2933;
  transform: scale(1.08);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-label {
  display: block;
  margin: 24px 0 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,204,0,0.18);
  background: rgba(255,255,255,0.12);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 30px;
}

.radio-group label, .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1rem;
}

.consent label {
  cursor: pointer;
  line-height: 1.5;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  gap: 20px;
}

.form-nav .btn-primary {
  flex: 1;
  max-width: 220px;
  padding: 16px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--yellow), #ffaa00);
  border: none;
  box-shadow: 0 8px 20px rgba(255,204,0,0.3);
  transition: all 0.3s;
}

.form-nav .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,204,0,0.45);
}

/* ============================================= */
/* ESTILOS PARA CAMPOS DEL FORMULARIO EN FONDO BLANCO */
/* ============================================= */
.quote-form-col .form-input,
.quote-form-col textarea,
.quote-form-col input[type="text"],
.quote-form-col input[type="email"],
.quote-form-col input[type="tel"],
.quote-form-col input[type="number"] {
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1.05rem;
  color: #111827;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
}

.quote-form-col .form-input:focus,
.quote-form-col textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(3, 118, 181, 0.15);
  background: #f8fafc;
}

.quote-form-col textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form-col .form-label {
  color: var(--blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
}

/* ================= QUITAR BORDES NEGROS DE LOS VIDEOS ================= */
.services-video-container,
.hero {
  background: transparent !important;
  overflow: hidden !important;
}

.bg-video-services,
.bg-video {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: transparent !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: absolute !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ================= UTILITIES ================= */
.section {
  padding: 80px 8%;
  text-align: center;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.about-content, .about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-badge {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

.section-title-center {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  line-height: 1.5;
}

/* ================= QUOTE & CONTACT LAYOUT ================= */
.quote-container {
  max-width: 1200px;
  margin: auto;
}

.quote-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: stretch;
}

.quote-form-col {
  flex: 2;
  min-width: 400px;
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote-contact-col {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 40px;
  background: rgba(0,0,0,0.15);
  border-radius: 20px;
}

.quote-contact-col h3 {
  color: var(--yellow);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.quote-contact-col p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.quote-contact-col .nav-brand {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--yellow);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.quote-contact-col a i {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.quote-contact-col a:hover i {
  transform: scale(1.2);
  color: var(--yellow);
}

/* ================= RESPONSIVE - CONSOLIDADO Y OPTIMIZADO ================= */

/* Tablets (hasta 992px) */
@media (max-width: 992px) {
  .service-grid, .service-grid-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .upgrade-box, .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .service-main-title, .service-subtitle, .service-description {
    text-align: center;
    margin: 0 auto 10px;
  }
  .about-image {
    order: -1;
  }
  .quote-layout {
    flex-direction: column;
    gap: 50px;
  }
  .quote-form-col, .quote-contact-col {
    padding: 30px;
    min-width: 100%;
  }
}

/* Móviles (hasta 768px) - BLOQUE ÚNICO Y LIMPIO */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  /* Navbar */
  .nav-container {
    padding: 0 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .nav-links a {
    margin: 10px 0;
    font-size: 1.1rem;
    text-align: center;
  }
  .nav-btn {
    margin: 15px auto 0;
    display: block;
    width: 80%;
    text-align: center;
  }
  .nav-logo {
    height: 38px;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    padding: 100px 15px 60px;
  }
  .hero-logo {
    max-width: 70%;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .hero-btn {
    width: 85%;
    margin: 0 auto;
    padding: 14px 30px;
    font-size: 1.1rem;
    display: block;
  }

  /* Grids y tarjetas */
  .service-grid,
  .service-grid-detail,
  .impact-grid,
  .add-on-items {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  .service-card,
  .impact-card,
  .checklist-card,
  .item {
    padding: 25px 18px !important;
    min-height: auto !important;
    border-radius: 16px;
  }

  /* Secciones - padding reducido */
  .section,
  .why-choose-us,
  .services-video-container,
  .checklist-container,
  .upgrade-section {
    padding: 70px 5% 50px !important;
  }

  /* Quote y formulario */
  .quote-container {
    width: 100% !important;
    padding: 0 10px !important;
    margin: 0 !important;
  }
  .quote-layout {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 40px !important;
  }
  .quote-form-col,
  .quote-contact-col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    margin: 0 auto 30px auto !important;
    padding: 25px 15px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .progress-container {
    width: 100% !important;
    padding: 0 10px !important;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
  }
  .progress-step {
    width: 100%;
    padding: 10px;
  }
  .radio-group,
  .checkbox-group,
  .source-columns {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .radio-group label,
  .checkbox-group label {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 1rem;
  }
  .form-label {
    font-size: 1.05rem;
    margin: 20px 0 8px;
  }
  .form-input,
  textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .form-nav {
    flex-direction: column;
    gap: 12px;
    width: 100% !important;
  }
  .form-nav button {
    width: 100% !important;
    padding: 14px;
    font-size: 1.1rem;
  }

  /* About Us - centrado absoluto y simétrico para iPhone/Safari */
  #about.section {
    padding: 60px 0 40px !important;          /* sin padding lateral en sección */
    margin: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .about-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important;               /* padding simétrico aquí */
    box-sizing: border-box !important;
  }

  .about-content {
    width: 100% !important;
    max-width: 90% !important;                /* equilibrio perfecto */
    margin: 0 auto !important;
    padding: 0 10px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .about-content h2,
  .about-content p,
  .about-content strong,
  .about-content em,
  .about-content span {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 5px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    order: -1 !important;
    text-align: center !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Bloqueo total para Safari/iOS */
  #about,
  .about-flex,
  .about-content,
  .about-image,
  .about-content * {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  @supports (-webkit-overflow-scrolling: touch) {
    .about-flex {
      -webkit-box-align: center !important;
      -webkit-box-pack: center !important;
    }
    .about-content {
      -webkit-text-size-adjust: 100% !important;
    }
  }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
  h1, .service-main-title {
    font-size: 2.2rem !important;
  }
  h2, .section-title-center {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.4rem !important;
  }
  p {
    font-size: 0.95rem !important;
  }

 /* ============================================= */
/* ============================================= */
@media (max-width: 768px) {
  /* Reset TOTAL en la cadena completa de contenedores (incluyendo padres) */
  body,
  #about,
  #about.section,
  .section,
  .container-impact,
  .about-flex,
  .about-content,
  .about-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Contenedor flex - centrado forzado + safe areas de iPhone */
  .about-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: env(safe-area-inset-top) 12px env(safe-area-inset-bottom) 12px !important;
  }

  /* Contenedor texto - ancho con vw para simetría perfecta */
  .about-content {
    width: 100% !important;
    max-width: 86vw !important;           /* ajustado para iPhone 14: deja ~7% a cada lado */
    margin: 0 auto !important;
    padding: 0 12px !important;
    text-align: center !important;
  }

  /* Todos los textos internos - centrado absoluto */
  .about-content * {
    text-align: center !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Imagen - sin corte y centrada */
  .about-image {
    width: 100% !important;
    max-width: 86vw !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    order: -1 !important;
  }

  .about-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  /* Safe areas y fixes Safari/iOS */
  @supports (padding: env(safe-area-inset-left)) {
    .about-flex {
      padding-left: env(safe-area-inset-left) !important;
      padding-right: env(safe-area-inset-right) !important;
    }
  }

  @supports (-webkit-overflow-scrolling: touch) {
    .about-flex,
    .about-content {
      -webkit-box-align: center !important;
      -webkit-box-pack: center !important;
      -webkit-text-size-adjust: 100% !important;
    }
  }
}
/* ============================================= */
/* FIX: FOOTER NO TAPA BOTÓN DEL FORMULARIO EN MÓVIL */
/* ============================================= */
@media (max-width: 768px) {
  /* Espacio extra abajo en la sección del formulario */
  #quote-service.section {
    padding-bottom: 120px !important; /* o más si tu footer es alto */
    margin-bottom: 80px !important;   /* asegura que haya espacio para el footer */
    min-height: 100vh !important;     /* evita que se colapse */
  }

  /* Footer fijo no tapa contenido */
  footer {
    position: relative !important;    /* si está fixed, cámbialo a relative en móvil */
    bottom: auto !important;
    padding: 20px 15px !important;
    margin-top: 40px !important;
    background: var(--dark) !important; /* o el color que uses */
  }

  /* Botones del formulario siempre visibles */
  .form-nav {
    position: sticky !important;
    bottom: 20px !important;
    background: white !important;     /* o el color del fondo del form */
    padding: 15px 10px !important;
    z-index: 10 !important;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1) !important;
    margin: 20px 0 !important;
  }

  /* Cuando el teclado aparece, evita superposición */
  .quote-form-col {
    padding-bottom: 150px !important; /* espacio para teclado + botón */
  }
}
}