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: #e40681;
    font-size: 14px;
}
.header-actions a:hover{
    text-decoration: none;
    color: #e40681;
}

/*Banner Nosotros*/
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
/* .hero img styles removed to allow inline classes in blade to control it */


.text-nosotros {
    /* margin removed to use tailwind layout */
    transition: transform 1s ease, box-shadow 1s ease;
}

.text-nosotros span {
    text-decoration: none;
    color: #faf9f6;
    font-weight: 700;
    display: inline-block;
    /* Animación al cargar */
    animation: slideUp 2s ease forwards;
}

.hero .container p{
    text-decoration: none;
    color: #faf9f6;
    display: inline-block;
    /* Animación al cargar */
    animation: slideUp 2.5s ease forwards;
    transition: transform 1s ease;
}

main{
    padding-top: 0 !important;
}
/*MISION, VISION Y VALORES*/
.contenedor-MisionValores {
    max-width: 1200px;   /* controla el ancho */
    margin: 0 auto;      /* centra el contenido */
    padding: 80px 24px;  /* margen interno (mobile friendly) */
}

/*mision*/
.mision {
    display: flex;
    align-items: center;
    gap: 4rem; 
    text-align: left;
}
.mision p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #4a4a4a;
} 
.mision img {
    width: 360px;
    max-width: 100%;
    height: auto;
    animation: flotar 6s ease-in-out infinite;
}
.img-wrap {
    position: relative;
    border-radius: 22px;
    animation: flotar 6s ease-in-out infinite;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 18px;
    background: white;
    position: relative;
    z-index: 2;
    
}
/*vision*/
.vision{
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}
.vision img {
    width: 435px;
    max-width: 100%;
    height: auto;
    animation: flotar 6s ease-in-out infinite;
    animation-delay: 1.5s; 
}

.vision p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/*carrusel*/
.swiper-slide {
    height: auto;
}
.employeesSwiper .swiper-wrapper {
    display: flex;
}

.employeesSwiper .swiper-slide {
    flex-shrink: 0;
    width: auto;
    height: auto;
}

/*animacion texto contacto*/
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/*animacion imagen flotante*/
@keyframes flotar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
