*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:url('../img/camion.jpeg') no-repeat center center/cover;
    color:white;
}

/* OVERLAY OSCURO */
.overlay{
    background: rgba(0,0,0,0.6);
    min-height:100vh;
}

/* HEADER */
header{
    background: linear-gradient(to right,#0b1d2d,#0f2c44);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
    border-radius:10px;
}

nav a{
    color:white;
    margin:0 12px;
    text-decoration:none;
    font-size:14px;
}

/* CONTENIDO */
.main{
    text-align:center;
    padding:80px 20px;
}

.main h2{
    font-size:28px;
    margin-bottom:20px;
}

.search-box{
    display:flex;
    justify-content:center;
    margin-bottom:40px;
}

.search-box input{
    padding:12px;
    width:260px;
    border:none;
    outline:none;
}

.search-box button{
    padding:12px 18px;
    border:none;
    background:#e63946;
    color:white;
    cursor:pointer;
}

/* PROGRESO */
.progress{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:30px;
}

.step{
    text-align:center;
}

.circle{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ccc;
    margin:auto;
    margin-bottom:6px;
}



.line{
    width:60px;
    height:2px;
    background:#ccc;
}

.step p{
    font-size:13px;
}

/* TEXTO */
.info{
    margin-top:10px;
}

/* FOOTER */
footer{
    background: linear-gradient(to right,#0b1d2d,#0f2c44);
    padding:30px 40px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-section{
    max-width:250px;
}

/* DIAMANTE */
.diamond{
    font-size:30px;
    color:#00d4ff;
    margin-bottom:10px;
}

/* REDES */
.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:40px;
    height:40px;
    border:1px solid white;
    border-radius:50%;
    margin-right:10px;
    color:white;
    transition:.3s;
}

.social-icons a:hover{
    background:#00d4ff;
    color:#0b1d2d;
    transform:scale(1.1);
}

/* COPYRIGHT */
.copy{
    text-align:center;
    margin-top:20px;
    font-size:12px;
    color:#aaa;
}