*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    background: -webkit-linear-gradient(90deg, #265298,#193361);/* Chrome 10-25, Safari 5.1-6 */                          background: linear-gradient(90deg, #265298,#193361);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */                                                   
}
header{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background-color: transparent;
}
.logo{
    height: 70px;
    font-weight: 700;
    color: white;
}
.navlist{
    display: flex;

}
.navlist a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
    
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;                                
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}
section{
    padding: 0 19%;
}
.hero-text h1{
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 90px;
    line-height: 1;
    color: white;
    margin: 0 0 45px;
}
.hero-text h4{
    font-size: 25px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
.hero-text p{
    color: white;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.hero-img img{
    width: 700px;
    height: auto;
}
.hero-text .direccion {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
    background-color: transparent;
    border-radius: 0;
}

.hero-text .direccion:hover {
    text-decoration: underline;
    text-decoration-color: #ffcc00;
    border: 0;
}
.hero-text .direccion:focus {
    outline: none; 
}
.hero-text a:not(.mobile-social-icons a){
    display: inline-block;
    color: white;
    background-color: #193361;
    border: 1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
}
.hero-text a:hover{
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}
.icons{
    position: fixed;
    left: 30px;
    top: 50%;
    padding: 10px;
    transform: translateY(-50%);
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

@media (min-width: 1195px) {
    .icons {
        left: 100px;
    }
}
.icons i{
    display: block;
    margin: 20px 0;
    font-size: 24px;
    color: white;
    transition: all .50s ease;
}
.icons i:hover{
    color: #193361;
    transform: translateY(-5px);
}
.scroll-down{
    position: absolute;
    bottom: 6%;
    right: 9%;
}
.scroll-down i{
    display: block;
    padding: 12px;
    font-size: 25px;
    color: white;
    background: #2c5cb5;
    border-radius: 30px;
    transition: all .50s ease;
}
.scroll-down i:hover{
    transform: translateY(-5px);
}
@media (max-width: 1535px){
    header{
        position: absolute;
        padding: 15px 3%;
        transition: .2s;
    }
    .icons{
        padding: 0 3%;
        transition: .2s;
    }
    .scroll-down{
        right: 3%;
        transition: .2s;
    }
}
@media (max-width: 1460px){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}
@media (max-width: 1340px){
    .hero-img{
        width: 100%;
        height: auto;
    }
    .hero-text h1{
        font-size: 70px;
        margin: 0 0 30px;
    }
}
@media (max-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .hero-text{
        padding-top: 115px;
    }
    .hero-img{
        text-align: center;
    }
    .hero-img img{
        width: 560px;
        height: auto;
    }
    .hero{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    .icons{
        position: fixed;
        left: 0;
        top: 50%;
        padding: 10px;
        transform: translateY(-50%);
        border-radius: 0 10px 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }
    .scroll-down{
        display: none;
    }
}
@media (max-width: 990px) {
    #menu-icon {
        display: block;
    }

    .navlist {
        position: fixed; 
        top: 0;           
        right: -100%;     
        width: 100%;      
        height: 100vh;    
        backdrop-filter: blur(32px);
        display: flex;
        align-items: center; 
        justify-content: center; 
        flex-direction: column;
        padding: 20px; 
        transition: all 0.55s ease;
    }

    .navlist a {
        margin: 15px 0;  
        display: block;
        text-align: center;
        font-size: 24px; 
        font-weight: bold; 
        color: white;
        text-transform: uppercase; 
        transition: all 0.3s ease; 
    }

    .navlist a:hover {
        color: #f0f0f0;
        transform: scale(1.1); 
    }

    .navlist.open {
        right: 0;  
    }
}
@media (max-width: 680px){
    .hero-img img{
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1440px) {
    .hero {
        height: auto; 
        display: grid;
        grid-template-columns: 1fr 1fr; 
        align-items: center;
        gap: 2rem;
    }

    .hero-text {
        margin-top: 80px; 
        padding: 0 3%; 
        order: 1; 
    }

    .hero-img {
        order: 2; 
        text-align: right;
    }

    .hero-text h1 {
        font-size: 60px; 
        margin-bottom: 30px;
    }

    .hero-text h4 {
        font-size: 20px; 
    }

    .hero-text p {
        font-size: 14px; 
        line-height: 1.6;
    }

    .hero-img img {
        width: 90%; 
        height: auto;
    }
}

@media (max-width: 990px) {
    .hero {
        height: auto; 
        display: block; 
        gap: 1rem;
        padding-top: 120px;
    }

.mobile-social-icons {
    display: none;
}

@media (max-width: 990px) {
    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding: 20px 0;
    }

    .mobile-social-icons i {
        font-size: 32px;
        color: white;
        transition: all .3s ease;
    }

    .mobile-social-icons i:hover {
        color: #193361;
        transform: translateY(-5px);
    }
}

    .hero-text {
        margin-top: 0;
        padding: 0 10%; 
        order: 1;
        text-align: left;
    }

    .hero-img {
        order: 2;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-text h4 {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-img img {
        width: 80%;
        height: auto;
    }
}
