:root {
  /* tu verde de marca */
  --soft-bg: #f3f6f7;
  --placeholder: #dce8ec;
}

.title-net {
  font-size: 22px;
  color: var(--brand-green);
  font-weight: 400;
}

.subtitle-net {
  font-size: 12px !important;
  color: #fff;
}

.font-Monument {
  font-family: "Monument Extended";
  font-weight: 400;
}

/* ===== Botón flotante WhatsApp ===== */
.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.btn-whatsapp img {
  width: 100px;
  height: 62px;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
}

/* ===== Botón lateral derecho ===== */
.btn-side {
  position: fixed;
  top: 35%;
  right: 1.5rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 9999;
  background: #00637a;
  font-family: "Monument Extended", sans-serif;
  color: #fff;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  display: inline-block;
}

.btn-side:hover {
  background: #a1d400;
  color: #003f4e;
}

.side-form {
  background-color: #00637a;
  color: #fff;
  width: 26rem;
  border-radius: 10px;
  position: fixed;
  right: 0;
  top: 30vh;
  z-index: 100000;
  margin-right: -23.5rem;
  transition: margin-right .5s ease;
}

.side-form:hover {
    margin-right: 0;
}

.side-form .content {
  position: relative;
}

/* Título vertical pegado a la izquierda */
.side-form .side-title {
  position: absolute;
  font-family: "Monument Extended", sans-serif;
  left: 1.5rem;
  font-size: 1rem;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: #fff;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  border-bottom: 1px solid #fff;
}

/* Contenido rojo separado para que no lo tape el título */
.side-form .form {
  padding-bottom: 1rem;
  width: 22rem;
  margin-left: 3.5rem; /* deja espacio para el título vertical */
}

.side-form .contact {
    background-color: #B8DA28;
    color: #00637a;
    border: none;
}

/* ====== NET panel ====== */
.net-panel-wrap {
  position: relative;
  padding-left: 56px;
}

.net-panel {
  position: relative;
  border-radius: 16px;
  padding: 5rem;
  border: none;
  background: #f6f7f8;
  overflow: hidden;
  z-index: 1;
}

/* Tabs laterales: pegados y compactos */
.net-side-tabs {
  position: absolute;
  left: 0;
  top: 4rem;
  width: 82px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  z-index: 1;
}

/* Píldoras más compactas */
.net-side-tabs .tab-pill {
  display: inline-block;
  font-family: "Monument Extended", sans-serif;
  background: #dfe3e6;
  color: black;
  font-weight: 400;
  font-size: 16px;
  padding: 8px 12px;
  transform: rotate(-90deg);
  text-decoration: none;
  letter-spacing: 1.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px 6px 0 0;
  transition: all 0.2s ease;
  margin: 70px;
  /* sin márgenes extra */
  line-height: 1;
}

/* Hover / Activo (igual que ya tenías) */
.net-side-tabs .tab-pill:hover {
  filter: brightness(1.05);
}

.net-side-tabs .tab-pill.is-active {
  background: #9da3a8;
  color: black;
}

/* ====== Responsive ====== */
/* NO quitamos el canal en móvil porque deben verse siempre */
@media (max-width: 1023px) {
  .net-panel {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .net-panel-wrap {
    padding-left: 56px;
  }

  /* <- conserva canal */
  .net-side-tabs {
    display: flex !important;
  }
}

/* Bullets */
.net-bullets {
  list-style-type: disc !important;
  list-style-position: outside;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
}

.net-bullets li {
  margin: 0.4rem 0;
  color: #4a4a4a;
}

/* Imagen */
.net-devices {
  width: 100%;
  height: auto;
}

/* CTA */
.net-cta {
  background-color: #0d5c63;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 26px 32px;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 1023px) {
  .net-panel {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .net-panel-wrap {
    padding-left: 0;
  }

  .net-cta {
    font-size: 12px;
  }

  .net-cta {
    width: 70%;
    justify-content: center;
  }
}

/* ===================== CONTACTANOS ===================== */
.contact-section {
  padding: 3rem 0 4rem;
}

/* CONTENEDOR PROPIO: gobierna el ancho de TODO (barra, chip, columnas) */
.contact-container {
  max-width: 970px !important;
  /* ancho global de la sección */
  margin: 0 auto;
  /* centrado */
  padding: 0 1rem;
  /* pequeño respiro lateral */
}

/* ===== Título tipo “faja” ===== */
.contact-title-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.contact-title-bar {
  height: 56px;
  /* un poco más alta como en la maqueta */
  background: #00637a;
  width: 100%;
}

.contact-title-chip {
  font-family: "Monument Extended", sans-serif;
  position: absolute;
  top: -30px;
  /* superposición similar a la referencia */
  left: 37%;
  transform: translateX(-50%);
  background: var(--brand-green);
  color: #00637a;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.5px;
  padding: 14px 90px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ===== Tarjeta del formulario ===== */
.contact-card {
  background: var(--soft-bg);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* limita aún más el ancho de la tarjeta para verse “angosta” */
.contact-form-wrap {
  max-width: 760px;
  /* controla ancho visual del formulario */
}

.contact-card .label {
  font-weight: 400;
  color: #3c4b50;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.contact-card .input,
.contact-card .textarea {
  background: #e6eff2;
  border: none;
  border-radius: 999px;
  height: 44px;
  padding-left: 16px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

.contact-card .textarea {
  border-radius: 12px;
  min-height: 110px;
  resize: vertical;
}

.contact-card .input::placeholder,
.contact-card .textarea::placeholder {
  color: #5496a6;
}

.contact-submit {
  background: #00637a;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
}

.contact-submit:hover {
  filter: brightness(1.05);
}

/* ===== Lateral de contacto ===== */
.contact-info h4 {
  font-family: "Monument Extended", sans-serif;
  color: #00637a;
  font-weight: 400;
  letter-spacing: 0.4px;
  font-size: 24px;
  margin-bottom: 0.75rem;
}

.contact-info .contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.35rem 0 1rem;
}

.contact-row.links {
  gap: 1rem;
}

.contact-row.links a{
  background-color: #00637A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
  width: 2rem;
  height: 2rem;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00637a;
  color: #fff;
}

.contact-info a {
  color: #00637a;
  font-weight: 400;
  text-decoration: none;
}

.contact-divider {
  width: 72px;
  height: 3px;
  background: #00637a;
  border-radius: 2px;
  margin: 1.25rem 0 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 1216px) {
  .contact-container {
    max-width: 1000px;
  }
}

@media (max-width: 1023px) {
  .contact-title-chip {
    font-size: 24px;
    padding: 10px 40px;
  }

  .contact-form-wrap {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title-chip {
    font-size: 22px;
    padding: 10px 28px;
    top: -14px;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

/* WA */
/* Título */
.trusted-title {
  font-family: "Monument Extended", sans-serif;
  color: #00637a;
  font-weight: 400;
  line-height: 1.2;
  font-size: 2rem;
}

/* Proporción del video */
.video-16by9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-16by9 .video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* En móvil: todo centrado */
@media (max-width: 768px) {
  .trusted-left,
  .trusted-title {
    text-align: center;
  }

  .trusted-left .image {
    margin-left: auto;
    margin-right: auto;
  }
}

/* colores de texto */
.text-green-1 {
  color: #b8da28;
}

.text-blue-1 {
  color: #00637a;
}

/* Background */
.bg-green-1 {
  background-color: #b8da28;
}

.bg-blue-1 {
  background-color: #00637a;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para el texto de Politicas de privacidad */
.policy .policy-header .title-policy {
  line-height: 1.25;
  color: #1f2937;
}

.title-policy {
  font-size: 30px;
}

.policy .subtitle-policy {
  color: #4b5563;
}

.policy .content {
  /* ancho de lectura cómodo */
  margin: 0 auto;
  line-height: 1.7;
  color: #374151;
}

.policy .content h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: #111827;
  font-weight: 700;
}

.policy .content ul {
  margin-left: 1.25rem;
  list-style: disc;
}

.policy hr {
  opacity: 0.2;
}

.d-none {
  display: none !important;
}

/* Utilidad para animacion acercamiento en evento hover */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-scale.wshadow:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.net-cta,
.contact-submit {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.net-cta:hover,
.contact-submit:hover {
  background-color: #146e77;
  color: #fff;
}

.hero-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  cursor: pointer;
}

.hero-down.center {
  width: 100%;
  margin-top: auto;
}

.hero-down.down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
}

.hero-down .icon {
  font-size: 1.5rem;
  color: #fff;
}

.form-products .options {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.container-btn-x {
  background-color: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  cursor: pointer;
}

.container-btn-x .img-x{
  margin-right: -40px;
}

.container-btn-x .container-text {
  position: relative;
}

.container-btn-x .container-text  .btn-text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}