* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {	
	font-size: 10px;
}
:root{
	--colorPrincipal_1: #e9f3f5;
	--colorPrincipal_2: #d2e8ec;
	--colorPrincipal_3: #bcdce2;
	--colorPrincipal_4: #a5d0d8;
	--colorPrincipal_5: #8fc5cf;
	--colorPrincipal_6: #78b9c5;
	--gris_1:#ededee;
	--gris_2:#dadbdc;
	--gris_3:#c8cacb;	
	--gris_4:#b5b8ba;	
	--gris_5:#a3a6a8;	
	/* Paleta basada en #78B9C5 */
	--color-base-1: #ECF7F9; /* claro */
	--color-base-2: #D9EEF2; /* medio-claro */
	--color-base-3: #9CD0D8; 
	--color-base-4: #78B9C5; 
	--color-base-5: #5896A0; 
}
body {
    min-height: 100vh; /* que el body ocupe toda la altura de la pantalla */
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1d3557;
}
  
.hero {
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}
.hero_up {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.hero_up img {
    width: 40%;
    max-width: 400px;
}
.titulo_claim{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding-top: 2rem;
}
.hero_up h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 1.8rem;

}
.hero_up p {
    font-size: 2.2rem;
    color: #333;

}
.hero_down {
    display: flex;
    justify-content: center;
}
.invisible{
    display: none;
}

.menu-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 3rem;
}
  
.boton-grande {
    text-align: center;
    width: 23%;
    height: 150px;
    background-color: var(--colorPrincipal_4);
    padding: 3rem;
    transition: transform 0.3s ease;
}
.boton-grande:hover {
    cursor: pointer;
    background-color: var(--colorPrincipal_6);
    transform: scale(1.05); /* Aumenta un 5% al hacer hover */
}

p.titulo_seccion {
    display: block;
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}
   
p.claim {
    font-size: 1.6rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;   
}
.beta-tag {
    background-color: transparent;
    color: white;
    padding: 0.3em 1em;
    margin-left: 10px;
    border-radius: 4px;
    font-weight:500;
    font-size: 1.4rem;
}
  

@media (max-width: 1024px) {
  * {
  box-sizing: border-box; 
  }

  html, body {
   
  min-height: 100vh;     /* ✅ mantener el alto de viewport */
  margin: 0;
  display: flex;
  flex-direction: column;
  }
  main {
  flex: 1;               /* ocupa todo el espacio libre */
  display: flex;
  flex-direction: column;
  background-color: transparent;
  }
  #bt_soporte {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* por encima de footer */
  }
  section.hero{
    justify-content: start;
    padding: 3rem;
    gap:0rem;
    background-color: transparent;
  }
  .boton-grande {
    width: 48%; /* dos botones por fila en tablet */
  }
}

@media (max-width: 768px) {
    section.hero{
    justify-content: start;
    padding: 2rem;
    gap:0.5rem;
  }
  .hero_up {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
  }
  .hero_down {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
  }
  .hero_up h1{
    font-size: 2em;
  }
  .hero_up p{
    display: none;
  }

  .hero_up img {
    display: none;
  }

  .menu-botones {
    justify-content: center;
  }

  .boton-grande {
    width: 100%; /* un botón por fila en móvil */
    height: 8rem;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  p.titulo_seccion {
    font-size: 1.8rem;
  }

  p.claim {
    display: none;
  }
}
