* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100vh;
}
html {
  scroll-behavior: smooth;
}

/* Botón hacia arriba */

#scrollTopBtnX {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #FF6600;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1999;
}

#scrollTopBtnX:hover {
  background: #FFA264;
  transform: translateY(-3px) scale(1.1);
}

.letrasomos {font-size:2.0vh; color:#555555; font-family:Calibri;line-height:1.9;}
.letrasomos2{font-size:2.0vh; color:#000000; font-family:Calibri;line-height:1.0;}
.letraact	{font-size:4.5vh; color:#000055; font-family:Calibri;line-height:1.9;}
.letraact2	{font-size:3.0vh; color:#555555; font-family:Calibri;line-height:1.9;}

.botonmas {width:300px; height:50px; background-color:orange; border-radius:15px; border:0px; color:#000055; font-size:3.1vh; font-family:Calibri;text-transform: uppercase;cursor:pointer;}
.botonmas2{width:200px; height:40px; background-color:orange; border-radius:15px; border:0px; color:#000055; font-size:3.1vh; font-family:Calibri;text-transform: uppercase;cursor:pointer;}

.botonmas:hover {background-color:#FFCC00; color:#000055;}
.botonmas2:hover{background-color:#FFCC00; color:#000055;}

@media(max-width:780px){
	
.letrasomos {font-size:1.0vh; color:#555555; font-family:Calibri;line-height:1.9;}
.letrasomos2{font-size:1.0vh; color:#000000; font-family:Calibri;line-height:1.0;}
.letraact	{font-size:3.0vh; color:#000055; font-family:Calibri;line-height:1.9;}
.letraact2	{font-size:1.5vh; color:#555555; font-family:Calibri;line-height:1.9;}	
.botonmas {width:200px; height:40px; background-color:orange; border-radius:15px; border:0px; color:#000055; font-size:1.5vh; font-family:Calibri;text-transform: uppercase;}
.botonmas2{width:150px; height:30px; background-color:orange; border-radius:15px; border:0px; color:#000055; font-size:1.5vh; font-family:Calibri;text-transform: uppercase;}

}


/******************************************************************************/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 🌀 ANIMACIÓN */
/*
.spinner {
    width:  150px;
    height: 150px;
    border: 5px solid #ddd;
    border-top: 5px solid #ff9800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
*/
/* GIRO */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* OCULTO */
#loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.loader-gif {
    width: 300px; /* ajusta tamaño */
}

/****************************************************************************************************/