/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
	font-size:16px;
}

.DESKTOP {
	display: block;
    width: 100%;
    height: 100vh;
}
.MOBILE{
	display:none;
}

/* Clases específicas para los textos */
.HOME_azul {
    color: #29abe2; /* Azul estándar */
    font-size: 2.2em;
    font-weight: 700; /* Negrita como en tu diseño */
    line-height: 1.2;
    
}

.HOME_negro {
    color: #000000; /* Negro */
    font-size: 2.2em;
    font-weight: 600; /* Semi-negrita */
    line-height: 1.2;
    
}
a:active{color: #000000; text-decoration: none;}
a:link{color: #000000; text-decoration: none;}
a:active{color: #000000; text-decoration: none;}
a:hover{color: #29abe2; text-decoration: none;}

/* Estilos para la tabla y fondo */
table {
    border-collapse: collapse;
}

td {
    vertical-align: top;
}
@media screen and (max-width: 980px) {
 body {
    font-size:13px;
}
  .DESKTOP {
    display: none;
  }

  .MOBILE {
    display: block;
  }
  .HOME_contenedor_MOBILE {
  width: 100vw;
  height: 100vh;
  background-image: url('../HOME_fondo_MOBILE.png');
  background-size: 100% 100%; /* Estira tanto en ancho como en alto */
  background-repeat: no-repeat;
  background-position: center;
  border-collapse: collapse; /* Opcional, pero habitual en tablas */
}
}