*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background-color:#f4f4f4;
    color:#333;
    line-height:1.6;
}


header{
    background:#0d47a1;
    color:white;
    padding:20px;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo{
    font-size:32px;
    font-weight:bold;
}

.logo span{
    color:#64b5f6;
}

.company-info{
    text-align:right;
    font-size:14px;
}


nav{
    margin-top:20px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#64b5f6;
}


main{
    max-width:1000px;
    margin:30px auto;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

h2{
    margin-bottom:15px;
    color:#0d47a1;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

fieldset{
    border:1px solid #ccc;
    padding:20px;
    border-radius:8px;
}

legend{
    font-weight:bold;
    color:#0d47a1;
    padding:0 10px;
}

label{
    display:block;
    margin-top:10px;
    margin-bottom:5px;
    font-weight:bold;
}

input,
select,
textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:15px;
}

textarea{
    resize:vertical;
}


.checkbox-group{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:10px;
}

.checkbox-group label{
    font-weight:normal;
}


.btn{
    background:#0d47a1;
    color:white;
    border:none;
    padding:15px;
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#1565c0;
}



footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}

.socials{
    margin:15px 0;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.socials a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.socials a i{
    margin-right:8px;
    color:#64b5f6;
}

.socials a:hover{
    color:#64b5f6;
}

footer a{
    color:#64b5f6;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

.horario{
    margin-top:10px;
}