/* ======================================================
   RESET BÁSICO
====================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #F5F5F7;
  font-family: 'Quicksand', sans-serif;
  overflow-x: hidden;
}

/* ======================================================
   CONTENEDORES GENERALES
====================================================== */
.textlog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ======================================================
   MÁRGENES UTILITARIOS
====================================================== */
.marginT {
  margin-top: 1rem;
}

.marginB {
  margin-bottom: 1rem; /* controlado y fino */
}

/* ======================================================
   TÍTULOS
====================================================== */
.titulosistema {
  font-weight: 700;
  font-size: 3.5rem; /* 56px */
  line-height: 100%;
  text-align: center;
}

/* Marca registrada */
.marcaregistrada {
  font-size: 1.875rem; /* 30px */
  vertical-align: top;
}

/* ======================================================
   TEXTO
====================================================== */
p {
  font-weight: 400;
  font-size: 1.75rem; /* 28px */
  line-height: 100%;
  text-align: center;
  max-width: 720px;
}

/* ======================================================
   BOTONES
====================================================== */
.btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem; 
  /* flex-wrap: wrap; */
}

.main-btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 1.875rem; /* 30px */
  transition: all 0.3s ease;
  text-align: center;
}

/* Botón primario */
.main-btn.primary {
  background-color: #003799;
  color: white;
  padding: 0.6875rem 1.3125rem; /* 11px 21px */
  min-width: 7.9375rem; /* 127px */
  height: 2.6875rem; /* 43px */
}

/* Botón secundario */
.main-btn.secondary {
  background-color: transparent;
  color: #003799;
  padding: 0.6875rem 1.3125rem;
  min-width: 7.1875rem; /* 115px */
  height: 2.6875rem;
  border: 0.0625rem solid #003799; /* 1px */
}

.main-btn.secondary:hover {
  background-color: #003799;
  color: white;
}

/* ======================================================
   HERO IMAGE (CAJA)
====================================================== */
.hero-img {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-img img {
  width: 24rem;   /* 384px */           
  height: auto;
  max-width: 100%;
  display: block;
}


/* ======================================================
   SEPARADOR BLANCO
====================================================== */
.separacionB {
  width: 100vw;
  height: 0.5rem;
  background-color: white;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ======================================================
   RESPONSIVE
====================================================== */

/* HD – 1280px */
@media (max-width: 80rem) {
  .hero-img img {
    width: 25rem; /* 400px */
  }
}

/* Tablets horizontales – 1024px */
@media (max-width: 64rem) {
  .titulosistema {
    font-size: 3.125rem; /* 50px */
  }

  p {
    font-size: 1.5rem; /* 24px */
    padding: 0 1.25rem;
  }

  .hero-img img {
    width: 25rem;
  }
}

/* =========================================
   FIX EXACTO PARA 1075 x 520 (PANTALLA REAL)
========================================= */
@media (max-width: 67.1875rem) and (max-height: 32.5rem) {
  .hero-img img {
    width: 18rem;       /* 288px */
    height: 16.65rem;   /* 266.4px */
    object-fit: contain;
  }
}


/* Tablets / móviles grandes – 768px */
@media (max-width: 48rem) {
  .titulosistema {
    font-size: 2.5rem; /* 40px */
  }

  p {
    font-size: 1.25rem; /* 20px */
  }

  .btns {
    gap: 0.9375rem; /* 15px */
  }

  .main-btn.primary,
  .main-btn.secondary {
    flex-grow: 1;
    max-width: 8.125rem; /* 130px */
  }

  .hero-img img {
    width: 90%;
    max-width: 20rem; /* 320px */
  }
}

/* Móviles pequeños – 480px */
@media (max-width: 30rem) {
  .titulosistema {
    font-size: 22px;
    font-weight: 700; 
    width: 319px;
  }

  .marcaregistrada {
    font-size: 1rem;
    
  }

  p {
    font-size: 1rem; /* 18px */
    width: 319px;
  }

  .main-btn.primary,
  .main-btn.secondary {
    width: 110px;
    font-size: 14px;
    height: 40px;
  }

  .hero-img img {
    max-width: 230px;
  }
}


/* Móviles pequeños – 375px */
@media (max-width: 23.4375rem) {
  .titulosistema {
    font-size: 22px;
    font-weight: 700; 
    width: 319px;
  }

  .marcaregistrada {
    font-size: 1rem;
    
  }

  p {
    font-size: 1rem; /* 18px */
    width: 319px;
  }

  .main-btn.primary,
  .main-btn.secondary {
    width: 110px;
    font-size: 14px;
    height: 40px;
  }

  .hero-img img {
    max-width: 230px;
  }
}

