/* RESET BASICO */

body{

margin:0;
font-family:'Poppins', sans-serif;
background:#f5f5f5;

}

/* HEADER */

.header{

background:white;
box-shadow:0 3px 15px rgba(0,0,0,0.08);

}

/* CONTENEDOR */

.header-container{

width:90%;
max-width:1200px;

margin:auto;

display:grid;
grid-template-columns:1fr 2fr 1fr;

align-items:center;

padding:15px 0;

}

/* LOGO */

.logo{

height:95px;

}

/* MENU */

.menu{

display:flex;
justify-content:center;

gap:35px;

}

/* LINKS */

.menu a{

position:relative;

text-decoration:none;
color:#333;

font-weight:600;
font-size:16px;

padding-bottom:6px;

transition:0.2s;

}

/* BARRA ANIMADA */

.menu a::after{

content:"";
position:absolute;

left:0;
bottom:0;

width:0%;

height:3px;

background:#f25c05;

transition:0.3s;

}

/* HOVER */

.menu a:hover::after{

width:100%;

}

.menu a:hover{

color:#f25c05;

}