* {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores */
  --primary-color: #54774c;
  --primary-color-hover: #2d5624;
  --grey-300: #111;

  /* Shadows */
  --shadow-m1: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  --shadow-m2: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  --shadow-m3: 0px 4px 8px 3px rgba(0, 0, 0, 0.15),
    0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  --shadow-m4: 0px 6px 10px 4px rgba(0, 0, 0, 0.15),
    0px 2px 3px 0px rgba(0, 0, 0, 0.3);
  --shadow-m5: 0px 8px 12px 6px rgba(0, 0, 0, 0.15),
    0px 4px 4px 0px rgba(0, 0, 0, 0.3);

  /* Fuentes */
  --ff-display: "Londrina Solid", sans-serif;
  --ff-body: "Poppins", sans-serif;

  /* Tamaños */
  --fs-display: 74px;
  --fs-h1: 48px;
  --fs-h2: 40px;
  --fs-h3: 32px;
  --fs-h4: 28px;

  --fs-subtitle-1: 24px;
  --fs-subtitle-2: 20px;

  --fs-lead: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-tiny: 12px;

  /* Line-height */
  --lh-display: 0.85;
  /* 85% */
  --lh-heading: 1.2;
  /* 120% */
  --lh-subtitle: 1.4;
  /* 140% */
  --lh-body: 1.4;
  /* 140% */
}

/* Display y headings usan Londrina */
.typ-display {
  font-family: var(--ff-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  text-shadow: 0px 5px 0px var(--grey-300);
  font-weight: 500;
}

.typ-h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  font-weight: 500;
}

.typ-h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  font-weight: 500;
}

.typ-h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
  font-weight: 400;
}

.typ-h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
  font-weight: 500;
}

.typ-subtitle-1 {
  font-family: var(--ff-body);
  font-size: var(--fs-subtitle-1);
  line-height: var(--lh-subtitle);
  font-weight: 500;
}

.typ-subtitle-2 {
  font-family: var(--ff-body);
  font-size: var(--fs-subtitle-2);
  line-height: var(--lh-subtitle);
}

.typ-lead {
  font-family: var(--ff-body);
  font-size: var(--fs-lead);
  line-height: var(--lh-subtitle);
}

.typ-body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.typ-small {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.typ-tiny {
  font-family: var(--ff-body);
  font-size: var(--fs-tiny);
  line-height: var(--lh-body);
}

/**************************************** General Styles ****************************************/

body {
  background-color: #f1f1f1;
  color: var(--grey-300);
  min-height: 100vh;
}

.sectionContentContainer {
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  max-width: 1420px;
  gap: 40px;
  flex-direction: column;
}

section {
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sectionTitleContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

/**************************************** Buttons ****************************************/

.btnPrimary {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  width: 277px;
  text-decoration: none;
  color: var(--grey-300);
  background-color: white;
  padding: 12px 54px;
  border-radius: 12px;
  border: solid 2px var(--grey-300);
  box-shadow: 0px 6px var(--grey-300);
  text-align: center;
  z-index: 1;
}

.btnPrimary:hover {
  cursor: pointer;
  background-color: #d3d3d3;
}

.btnPrimary:active {
  transform: translateY(6px);
  box-shadow: none;
  border: solid 2px white;
  color: white;
  background-color: rgb(12, 41, 25);
}

.btnSecondary {
  width: fit-content;
  font-family: var(--ff-body);
  color: var(--grey-300);
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 24px;
  box-shadow: var(--shadow-m1);
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.btnSecondary:hover {
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: var(--shadow-m2);
}

/**************************************** NavBar ****************************************/

nav {
  padding: 8px 0px;
  z-index: 100;
  position: fixed;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  background-color: var(--primary-color);
}

nav.nav-hidden {
  transform: translateY(-100%);
}

nav.nav-visible {
  transform: translateY(0);
}

nav ul {
  width: 100%;
  display: flex;
  list-style: none;
}

nav a {
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
  scroll-behavior: smooth;

  transition: 0.4s;
}

nav a:hover {
  color: white;
  border-radius: 8px;
  background-color: var(--primary-color-hover);
}

#movalLogo {
  padding: 0;
}

#movalLogo:hover {
  background-color: rgba(0, 0, 0, 0);
}

nav li:first-child {
  margin-right: auto;
}

.fa-xmark,
.fa-bars {
  color: white;
  font-size: 24px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-m5);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  display: none;
  padding: 0;
}

.sidebar li {
  text-align: left;
  width: 100%;
}

.sidebar a {
  height: 100%;
  padding: 15px 30px;
  width: 100%;
}

.sidebar li:last-child {
  display: none;
}

.menu-button {
  display: none;
}

/**************************************** Hero ****************************************/

.heroImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  background-image: linear-gradient(rgba(61, 105, 53, 0.5),
      rgba(61, 105, 53, 0.5)),
    url("/Assets/MovalHero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heroContentContainer {
  display: flex;
  color: white;
  text-align: left;
  width: 100%;
  display: flex;
  gap: 64px;
}

.heroContent {
  display: flex;
  flex-direction: column;
  flex: 0.3;
  gap: 48px;
}

.heroTextContainer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.heroTitleContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.heroSubtitleContainer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.heroSubtitle {
  color: #fff;
  font-size: var(--fs-subtitle-1);
  text-shadow: 0px 2px 0px var(--grey-300);
  font-weight: 400;
}

/* líneas izquierda y derecha */
.heroSubtitleContainer::before,
.heroSubtitleContainer::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0px 2px 0px #1b1b1b;
}

.ctaContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/**************************************** About ****************************************/

.sectionAboutContent {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: stretch;
}

.divAboutLeft,
.divAboutRight {
  flex: 1 1 0;
  min-width: 0;
}

/* Izquierda */
.divAboutLeft {
  display: flex;
  align-items: center;
}

.imageCard {
  width: 100%;
  height: 700px;
  padding: 16px;
  background-color: #fff;
  box-shadow: var(--shadow-m1);
  border-radius: 12px;
  transform: rotate(1.3deg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: 2;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contenedor derecho (tu bloque rojo) */
.divAboutRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 32px;

  padding: clamp(16px, 3vw, 32px);
}

/***************************************** Padre Lucas *****************************************/

.padreLucasContent {
  display: flex;
  gap: 40px;
}

.padreLucasImg {
  padding: 24px;
  flex: 2 1 0;
  background-color: rgb(255, 255, 255);
  box-shadow: var(--shadow-m1);
}

.padreLucasImg img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .sectionContentContainer {
    padding: 12px;
  }

  .padreLucasImg {
    padding: 12px;
  }
}

.padreLucasTextContainer {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  gap: 12px;
}

.padreLucasTextContainer button {
  margin-top: 20px;
  border: none;
}

/**************************************** Our Team ****************************************/
.ourTeamSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ourTeamCards {
  width: 100%;
  display: flex;
  gap: 40px;
}

/* Mejor usar background-color acá */
.ourTeamCard {
  background-color: #fff;
  padding: clamp(0px, 24px, 200px);
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: var(--shadow-m2);
  gap: 12px;
}

/* Contenedor de imagen consistente */
.ourTeamCard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: rgb(194, 194, 194);
}

.ourTeamCardFerreria img {
  object-position: top;
}

.ourTeamCardTextContainer {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

/**************************************** Activities ****************************************/

.activitiesSection {
  width: 100%;
}

.activitiesGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 40px);
}

/* ---------------------------------------------------------
   Card base
--------------------------------------------------------- */

.activityCard {
  position: relative;
  width: 100%;
  min-height: clamp(140px, 18vw, 200px);
  padding: clamp(16px, 2vw, 28px);

  display: flex;
  align-items: flex-end;

  border-radius: 12px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  box-shadow: var(--shadow-m2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.activityCard:hover {
  box-shadow: var(--shadow-m4);
  transform: translateY(-2px);
}

/* Título dentro de la card */
.activityTitle {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* ---------------------------------------------------------
   Fondos por actividad
   Mantenible y fácil de editar
--------------------------------------------------------- */

.activityFogones {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Fogones.webp");
}

.activityEnsayos {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Caminata.webp");
}

.activityReflexion {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Reflexion.webp");
}

.activityJuegosNocturnos {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Juegos_Nocturnos.webp");
}

.activityCocina {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Cocina.webp");
}

.activityCaminatas {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),
    url("/Assets/Actividad_Caminata.webp");
}

/**************************************** Map ****************************************/

iframe {
  padding: 12px;
  width: 100%;
  height: 550px;
  background-color: white;
  border-radius: 24px;
  box-shadow: var(--shadow-m2);
}

/**************************************** CheckList ****************************************/

.checkListSectionContent {
  display: flex;
  width: 100%;
}

.checkList {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.checkItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
}

.checkItem span {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 20px;
}

.checkItem input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 24px;
  height: 24px;
  border: 4px solid #000;
  background: #fff;

  display: grid;
  place-content: center;

  cursor: pointer;
  transform: rotate(var(--rot));
}

.checkItem:nth-child(5n + 1) {
  --rot: -4deg;
}

.checkItem:nth-child(5n + 2) {
  --rot: 2.5deg;
}

.checkItem:nth-child(5n + 3) {
  --rot: -1.5deg;
}

.checkItem:nth-child(5n + 4) {
  --rot: 4deg;
}

.checkItem:nth-child(5n + 5) {
  --rot: 0.8deg;
}

.checkItem input[type="checkbox"]::after {
  content: "";
  display: block;

  width: 12px;
  height: 6px;

  border-left: 4px solid #000;
  border-bottom: 4px solid #000;

  transform: rotate(-45deg) scale(0);
  transform-origin: center;

  transition: transform 0.1s ease;
}

.checkItem input[type="checkbox"]:checked::after {
  transform: rotate(-45deg) scale(1);
}

/* opcional: estilo cuando está marcado */
.checkItem input:checked+span {
  text-decoration: line-through;
  opacity: 0.65;
}

.checkListPhotos {
  flex: 2 1 0;
  position: relative;
}

.checkListPhoto {
  position: absolute;
  width: 70%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  box-shadow: var(--shadow-m2);
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-m2);
  background-color: white;
  padding: 12px;
}

#checkListPhoto1 {
  top: 3rem;
  left: 0;
  transform: translate(10%, -10%) rotate(3deg);
}

#checkListPhoto2 {
  bottom: 0;
  right: 3rem;
  transform: translate(10%, -10%) rotate(-2.3deg);
}

.checkListPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/**************************************** FAQ ****************************************/
.FaqContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.Faq {
  width: 75%;
  border: solid 2px var(--grey-300);
  box-shadow: 0px 3px var(--grey-300);
  background-color: white;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.Faq:hover {
  cursor: pointer;
}

.FaqHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
}

.FaqHeader i {
  transition: transform 0.3s ease;
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

.Faq.active .FaqHeader i {
  transform: rotate(180deg);
}

.FaqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding: 0 16px 16px 16px;
}

.Faq.active .FaqAnswer {
  max-height: 500px;
  opacity: 1;
  padding: 0 16px 16px 16px;
}

.FaqAnswer p {
  color: #555;
}

/**************************************** Footer ****************************************/

#FooterSection {
  margin: 0;
}

.footerContentContainer {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;

  max-width: 1420px;
  flex-direction: column;
}

.footerTextContainer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  align-items: center;
  max-width: 75%;
}

.sunrise {
  background-image: linear-gradient(rgba(241, 241, 241, 1),
      rgba(255, 205, 161, 1));
  width: 100%;
}

/* ===========================
   LAPTOP (≤ 1200px)
   =========================== */
@media (max-width: 1200px) {

  /* FAQ un poco más angosto + tipografías levemente más chicas */
  .Faq {
    width: 85%;
  }
}

/* ===========================
   TABLET (≤ 968px)
   =========================== */
@media (max-width: 968px) {
  .sectionContentContainer {
    padding: 0 12px;
  }

  #movalLogo img {
    height: 32px;
  }

  nav ul,
  nav a {
    padding: 0px;
  }

  section {
    margin-bottom: 80px;
  }

  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .imageCard {
    padding: 0;
    transform: rotate(0deg);
  }

  .sectionAboutContent {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: fit-content;
  }

  .padreLucasContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .padreLucasTextContainer {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    max-width: 900px;
  }

  .padreLucasTextContainer button,
  .padreLucasTextContainer div {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .ourTeamCards {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .ourTeamCard {
    gap: 12px;
    padding: 12px;
  }

  .checkListPhotos {
    display: none;
  }

  .checkList {
    align-items: center;
  }

  .itemsListContainer {
    flex-direction: column;
    gap: 32px;
  }

  .activitiesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footerTextContainer {
    gap: 20px;
  }

  .sectionContentContainer {
    gap: 30px;
  }
}

/* ===========================
   MOBILE (≤ 768px)
   =========================== */
@media (max-width: 768px) {

  /* FAQ más ancho y compacto */
  .Faq {
    width: 95%;
  }

  .FaqHeader {
    padding: 12px 14px;
  }

  .FaqContainer {
    gap: 16px;
  }

  /* Contenedor principal más chico */
  .sectionContentContainer {
    gap: 30px;
  }

  /* Tipografías algo más chicas */
  :root {
    --fs-h2: 28px;
    --fs-lead: 15px;
    --fs-body: 14px;
  }

  /* Botones más accesibles en touch */
  .btnPrimary,
  .btnSecondary {
    min-height: 44px;
    touch-action: manipulation;
  }
}

/* ===========================
   MOBILE CHICO (≤ 520px)
   =========================== */
@media (max-width: 520px) {
  .Faq {
    width: 100%;
  }

  .FaqHeader {
    gap: 10px;
    padding: 10px 12px;
  }

  .FaqAnswer p {
    font-size: 13px;
  }

  /* Tipos aún más pequeños */
  :root {
    --fs-h2: 24px;
    --fs-lead: 14px;
    --fs-body: 13px;
  }

  .sectionCardStyleContainer {
    padding: 22px 18px;
  }

  /* Actividades en una sola columna */
  .activitiesGrid {
    grid-template-columns: 1fr;
  }

  /* Checklist más compacto */
  .checkItem {
    padding: 8px;
  }

  /* Sidebar ocupa todo el ancho */
  .sidebar {
    width: 100%;
  }
}

/**************************************** Form Page Styles ****************************************/

.primeraVezSection {
  margin-top: 100px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
}

#primeraVez {
  height: auto;
  gap: 40px;
  background-color: rgba(255, 187, 0, 0.3);
  padding: clamp(2rem, 40px, 10%);
  border: 3px solid rgb(255, 187, 0);
}

#primeraVez div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#formBody {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.listaDeCosasALlevar,
.fichaDelAcampante {
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
  margin: 0;
}

.sectionCardStyleContainer {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 40px;
  max-width: 1420px;
  gap: 60px;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.itemsListContainer {
  width: 100%;
  display: flex;
  gap: 128px;
}

.itemsList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.importantContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.costo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formLine {
  justify-content: center;
  display: flex;
  width: 100%;
  gap: 20px;
}

.formLine input,
.formLine select {
  border-radius: 4px;
  padding: 16px 24px;
  flex: 1;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  border: none;
  font-family: "Poppins", sans-serif;
}

.formLine p {
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  flex: 0.4;
}

.healthFieldset {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.healthFieldset legend {
  margin-bottom: 10px;
}

.healthCheckboxGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 18px;
}

.healthCheck {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.healthCheck input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #111;
}

.formTableBlock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.formTableWrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
    0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.formTable {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.formTable thead th {
  text-align: left;
  padding: 14px 16px;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.formTable thead th+th {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.formTable td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.formTable td+td {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.formTable tbody tr:last-child td {
  border-bottom: none;
}

.tableInput {
  width: 100%;
  padding: 12px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  box-shadow: none;
}

.tableHint {
  opacity: 0.65;
}

.variableInputContainer {
  display: none;
}

.finalFormPart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: inherit;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.finalFormPart .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.finalFormPart .flex p {
  min-width: 400px;
  width: 35%;
}

.inputError {
  border: 2px solid #e53935 !important;
  outline: none;
}

.inputError:focus {
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

/* Form Laptop */
@media (max-width: 1200px) {
  #formBody {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .healthCheckboxGrid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

/* Form Tablet */
@media (max-width: 968px) {
  .primeraVezSection {
    margin-top: 60px;
  }

  .sectionCardStyleContainer {
    padding: 30px 40px;
    gap: 30px;
  }

  .itemsListContainer {
    flex-direction: column;
    gap: 40px;
  }

  .formLine {
    flex-direction: column;
    gap: 12px;
  }

  .formLine p {
    flex: none;
    width: 100%;
    text-align: left;
  }

  #formBody {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

/* Form Mobile */
@media (max-width: 768px) {
  .sectionCardStyleContainer {
    padding: 24px 20px;
    gap: 32px;
  }

  .primeraVezSection,
  .listaDeCosasALlevar,
  .fichaDelAcampante {
    padding: 0 20px;
  }

  .costo {
    padding: 24px 0;
  }

  .formTableWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .formTable {
    min-width: 480px;
  }

  .formTable thead th,
  .formTable td {
    padding: 10px 12px;
    font-size: 14px;
  }

  .tableInput {
    padding: 10px 12px;
    font-size: 14px;
  }

  .formTableWrap::after {
    content: "→ Deslizá";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    pointer-events: none;
    opacity: 0.8;
  }

  .healthCheckboxGrid {
    gap: 8px 12px;
  }

  .healthCheck span {
    font-size: 15px;
  }

  .finalFormPart {
    margin: 32px 20px;
    gap: 20px;
  }

  .finalFormPart .flex {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .finalFormPart .flex p {
    min-width: unset;
    width: 100%;
    max-width: unset;
    font-size: 14px;
  }

  .finalFormPart .flex input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
  }
}