* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    scroll-behavior: smooth;
    
}

body {
    background: linear-gradient(40deg,#191919, #161616 , #000000, #090909);
    filter: blur(50%);
    overflow-x: hidden;
}



/* Animacion Keyframes  */
@keyframes show {

    from {
        opacity: 0;
        scale: 20%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
    
}

h1 {
    font-family: 'Teko';
    font-weight: 500;
    font-size: 70px;
    color: #fff;
}

span {
    font-family: 'Teko';
    font-weight: 500;
    font-size: 70px;
    color: #E2C78B;
}

h2 { 
    font-family: 'Teko';
    font-weight: 500;
    font-size: 50px;
    color: #fff;
}

h3 { 
    font-family: 'Titillium Web';
    letter-spacing: 1px;
    font-size: 25px;
    color: #fff;
}

p {
    font-family: 'Titillium Web';
    font-size: 18px;
    font-kerning: normal;
    letter-spacing: 0.5pt;
    color: #fff;
}

/* Navbar */

.logo img {
    width: 70px;
    height: auto;
    
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: #060606;
    padding: 2px 20px;
    margin: 0;
}

.close-ico, .open-ico {
    width: 30px;
}

.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-family: 'Titillium Web';
    font-weight: 700;
    color: #fff;
    transition: 0.15s ease-in-out;
    position:relative;
    
}

.menu li a::after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: 0.15s ease-in-out;
}

.menu li a:hover::after {
    width: 100%;
}

.close-menu , .open-menu {
    position: absolute;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu{
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

/* Media Queries Navbar */
@media(max-width: 900px) {

    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        top: 0;
        position: fixed;
        right: -100%;
        z-index: 100;
        background-color: #0a0a0afa;
        filter: blur(90%);
        transition: all 0.2s ease-in-out;
    }
    

    .menu li a { padding: 4px; }
    .open-menu, .close-menu { display: block; }
    #check:checked ~ .menu { right: 0; }
}


/* FAB */

#fab {
    display: none; /* Oculta el botón por defecto */
    position: fixed; /* Lo posiciona de forma fija en la pantalla */
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E2C78B; /* Color de fondo del botón */
    color: #2d2d2d; /* Color del texto del botón */
    font-size: 24px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#fab:hover {
    background-color: #E2C78B; /* Cambia el color de fondo al pasar el cursor por encima */
}

#fab {
    /* ... Estilos anteriores ... */
    transition: transform 0.3s ease-in-out; /* Agrega una transición suave */
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 60px; 
    height: 60px; 
}

#fab i {
    
    font-size: 24px; 
}

#fab.show {
    opacity: 1;
}

#fab:hover {
    /* ... Estilos anteriores ... */
    transform: scale(1.1); /* Agrega un efecto de escala al pasar el cursor por encima */
}

/* Secccion de Inicio */

.home {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.944), rgba(0, 0, 0, 0.605)), url(https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    width: 100%;
    height: 90vh;
    background-position: top;
    background-size: cover;
    background-attachment: initial;
}

.ico-home {
    width: 80px;
    transition: transform 0.4s ease;
}

.ico-home:hover {
    opacity: 80%;
    transform: scale(1.1);
}


/* Seccion de Acerca de */

.about-us {
    background-color: #181818;
    margin: 0;
    padding: 15vh;
}


/* Seccion de Servicios */

.services {
    background-color: #131313;
    margin: 0;
    padding: 15vh;
    display: flex;
    justify-content: center;

}

.info-services {
    margin: auto;
    align-items: start;

}

.img-services {
    width: 70%;
    transition: 0.4s ease-in-out;
}

.img-services:hover {
    filter: grayscale();
    transform: scale(1.1);
}

.btn-2 {
    font-family: 'Titillium Web';
    font-weight:700;
    font-size: 20px;
    letter-spacing: 2pt;
    color: #E2C78B;
    border: 1.5px solid #E2C78B;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    transition: transform 0.4s ease;


    /* Animation */
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name:show;
    animation-range: entry 10% cover 30%;
    animation-fill-mode: both;

    

}


.btn-2:hover{
    color: #e2c68bb7;
    transform: scale(1.1);
}

/* Seccion de Nuestro Equipo */

.team {
    scroll-margin-top: 300px ;
    padding: 15vh;

    /* Animation */
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name:show;
    animation-range: entry 20% cover 30%;
    animation-fill-mode: both;

}

.team h2 {
    text-align: center;
}

.team p {
    text-align: center;
}

.teams {
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    margin: 20px;
}

.team-1 {
    padding-right: 20px;
}

.team-2 {
    padding-right: 20px;
}

.team-img {
    width: 60%;
    align-items: center;
    transition: 0.30s ease-in-out;
    padding-top: 20px;
    padding-bottom: 20px;
}

.team-img:hover {
    transform: scale(1.1);
    filter: grayscale(100);
}


/* Linea de Contacto */

.contact-line {
    justify-content: center; 
    align-items: center; 
    text-align: center;
}

.line {
    display: inline-block; 
    width: 300px;
    padding: 5vh;
}


/* Seccion de Contacto */

.contact-container h2 {
    text-align: center;

}

.contact-container {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    height: 100vh; 
    box-sizing: border-box;
    scroll-margin-top: 100px;
    padding: 15vh;


    /* Animation */
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name:show;
    animation-range: entry 10% cover 30%;
    animation-fill-mode: both;

    scroll-margin-top: 300px;
}

.contact-form {
    padding: 20px;
    width: 100%; 
    max-width: 600px; 
}

form {
    padding: 45px 55px;
    border-radius: 20px;
    text-align: left;
    font-family: 'Titillium Web';
    background-color: #212121 /* Fondo semi-transparente */
}

.input-group-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    color: #4f4f4f;
    font-family: 'Titillium Web';
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

input {
    font-family: 'Titillium Web';
    font-size: 16px;
    padding: 17px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    background-color: transparent; /* Fondo transparente */
    border: 2px solid #E2C78B;
    outline: none;
    color: white; /* Color del texto */
}

textarea {
    font-family: 'Titillium Web';
    font-size: 16px;
    padding: 17px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 2px solid #E2C78B;
    outline: none;
    resize: none;
    height: 120px;
    scrollbar-width: 0;
    line-height: 17px;
    background-color: transparent; /* Fondo transparente */
    color: white; /* Color del texto */
    field-sizing: content;
}

form textarea::-webkit-scrollbar {
    width: 0;
}

input::placeholder, textarea::placeholder {
    color: #cdcdcd; 
    font-family: 'Titillium Web';
}

.btn-form {
    background-color: #E2C78B;
    color: #2d2d2d;
    font-family: 'Titillium Web';
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.btn-form:hover {
    color: #585757;
    transform: scale(1.05);
}


/* Footer */

.footer-div {
    margin-top: 100px;
}

.footer-container {
    padding: 8vh;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
}

.footer-links {
    width: 30%;
    min-width: 100px; 
    text-align: left;
}

section {
    box-sizing: border-box;
    background-color: #131313;
    box-shadow: #1C1D22;
}

section ul {
    font-family: 'Titillium Web';
    font-size: 18px;
    list-style: none;
}

section a {
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
}

section p {
    text-decoration: none;
    color: #ffffff;
    margin: 0; 
    font-size: 16px;
}

section a:hover {
    color: #E2C78B;
    transition: 0.5s;
}

section h4 {
    font-family: 'Teko';
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0; 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links li {
    display: flex;
    align-items: center; 
    margin-bottom: 10px;
}

.red-social li {
    display: inline-block;
}

.icon-social {
    width: 30px;
    height: auto;
    padding-right: 10px;
}

.icon-social:hover {
    opacity: 90%;
}

.icon-location {
    width: 25px;
    height: auto;
    padding-right: 10px;
}

.copyright-p {
    font-family: 'Titillium Web';
    font-size: 16px;
    color: #ffffff;
    border-top: 2px #ffffff solid;
    padding-top: 10px;
}

.copyright {
    font-family: 'Titillium Web';
    font-size: 18px;
    color: #ffffff;
}


/* Media Queries */
/* Media Queries Pantallas Grandes */


@media screen and (max-width:1800px) {
    .home {
        background-position: 50%;
    }
}


/* Media Queries Pantallas Intermedias */
@media screen and (max-width:1400px) {

    h1 {
        font-size: 60px;
    }

    span {
        font-size: 60px;
    }

    .home {
        background-position: 50%;
    }


    .team {
        animation: none;
        scroll-margin-top: 0; 
    }

    .contact-container {
        animation: none;
        scroll-margin-top: 0; 
    }
}

/* Media Queries Pantalla Estandar */
@media screen and (max-width:1200px){

    .about-us {
        padding: 10vh;
    }

    .services {
        padding: 10vh;
        flex-direction: column;
    }

    .img-services {
        display: none;
    }
    
    .team {
        padding: 40px;
    }
    
}



/* Media Queries Tabletas Medium */

@media screen and (max-width: 900px){
    .about-us {
        padding: 8vh;
    }

    .services {
        padding: 8vh;
    }

    .team {
        animation: none;
        scroll-margin-top: 0; 
    }

    .teams {
        flex-direction: column;
    }

    .team-img {
        padding-top: 30px;
        width: 40%;

    }

    .line {
        width: 250px;
    }


    .contact-container {
        animation: none;
        scroll-margin-top: 0; 
    }



    .footer-row {
        display: flex;
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        padding: 10px 0px;
        }
}

/* Media Queries Telefonos moviles anchos */
@media screen and (max-width: 680px) {

    h1 {
        font-size: 45px;
    }

    span {
        font-size: 45px;
    }

    h2 {
        font-size: 45px;
    }

    h3 {
        font-size: 20px;
    }


    p {
        font-size: 16px;
    }
    

    .contact-container {
        padding: 2vh;
    }
}
