*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-image: url(ChatGPT\ Image\ 20\ feb\ 2026\,\ 03_53_13\ p.m..png);
    width: 100%;
    height: 600px;
    object-fit: cover;    
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#111;
    width:100%;
    z-index:1000;
    height: 80px;
}

.logo{
    display: flex;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
    padding-top: 15px;
}

.nav-links a{
    text-decoration: none;
    color: white ;
    font-size: 18px;
    position: relative;
}

.nav-links a::after{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F28C33;
    transform: scaleX(0 );
    transform-origin: left;
    transition: 0.3s ease-in-out; 
}

.nav-links a:hover::after{
    transform: scaleX(1);
}

.images{
    border-radius: 10px;
}

.boton{
    border: none;
    background-color: red;
    color: white;
    width: 255px;
    height: 40px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s ease-in-out;    
}

.boton:hover{
    transform: translate();
    transform: scale(1.2);
}

.boton2{
    border: none;
    background-color: #F28C33;
    color: white;
    width: 255px;
    height: 40px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s ease-in-out;   
}

.boton2:hover{
    transform: translate();
    transform: scale(1.2);
}

.boton3{
    border: none;
    background-color: #F28C33;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    margin-right: 5px;
    width: 110px;
}

.color{
    color: #F28C33;
    font-weight: 700;
    padding-top: 20px;
}

.color2{
    color: white;
    font-weight: 600;
    padding-top: 15px;
}

.links{
    color: whitesmoke;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul,ol{
    list-style: none;
}

.estilo{
    text-decoration: none;
    color: white;
    font-size: 19px;
    transition: 0.3s;
    padding-top: 20px;
}

.estilo:hover{
    color: #F28C33;
}

.scroll{
    height: 500px;
    overflow-y: auto;
    border: 1px solid white;
    scrollbar-width: thin;
    scrollbar-color: #F28C33;
    background: black;
    border: none;
    height: 200px;
}