body {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #1c1c1c;
    transition: background-color 0.3s ease, color 0.3s ease;
    
}

/*Boton arriba*/

#myBtn {
    display: none; /* oculto por defecto */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    padding: 10px 15px;
    background-color: #005393;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#myBtn:hover {
    background-color: #003d6b;
}


/*HEADER*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Asegura que esté por encima de la imagen */
    background-color: transparent; /* Empieza transparente */
    transition: background-color 0.3s ease;
}
header .header {
    width: 100%;
    height: 95px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}
    
.header-nav{
    margin: 6px;
}
.header-nav a{
    text-decoration: none;
    color: #faf9f6;
    margin: 9px;
    /* font-size: 10px !important; */
}
.header-nav a:hover{
    font-weight: 700;
    border-bottom: solid 1px #faf9f6;
}
.header-actions a{
    text-decoration: none;
    margin: 9px;
    color: #005393;
    font-size: 14px;
}
.header-actions a:hover{
    text-decoration: none;
    color: #e40681;
}
/*FYLER*/ 
.flyer-contacto{
    width: 100%;
    height: auto;
    background: linear-gradient(135deg,#003b6f,#005393,#7a2a7a,#e40681);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    grid-template-columns: 1fr auto 1fr;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12rem;
}

.text-contacto{
    justify-content: center;
    align-items: center;
}
.text-contacto a{
    text-decoration: none;
    color: #faf9f6;
    font-weight: 700;
    display: inline-block;
    /* Animación al cargar */
    animation: slideUp 1s ease forwards;
    text-align: center;
}

/*CONTENIDO SARLAFT*/
.sarlaft-text {
    max-width: 1000px;   /* controla el ancho */
    margin: 0 auto;      /* centra el contenido */
    padding: 80px 24px;  /* margen interno (mobile friendly) */
    text-align: justify;
}

.sarlaft-text h1{
    font-weight: 900;
    font-size: 15px;
    text-align: center;
}
.sarlaft-text h2{
    font-weight: 900;
    font-size: 14px;
    text-align: center;
}
.sarlaft-text h3{
    font-weight: 800;
    font-size: 13px;
}



/*animacion de fondo gradiante*/
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
