/* Estilos para Cheshire Code - Header Personalizado */

#site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    /* Centra el contenedor interno */
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    background-size: cover;
    width: 100%;
    height: 80px;
}

#site-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.3s ease;
}

#site-header .site-header-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    /* Un poco de espacio lateral en pantallas pequeñas */
    box-sizing: border-box;
}

#site-header .logo img {
    max-width: 200px;
    margin-left: 120px;
    /* Elimina el margen izquierdo */
    margin-right: 30px;
}

#site-header .main-navigation {
    display: flex;
    gap: 20px;
}

#site-header .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-header .menu li {
    display: inline-block;

}

#site-header .menu li a {
    color: #1379a4;
    font-weight: 400 !important;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}
  /* Estos estilos se aplican desde CSS personalizado
#site-header .menu li a:hover {
    font-weight: 600;

}
    
#site-header .cheshire-cta-btn:hover {
    background-color: #1B617E !important;
}*/

#site-header .cheshire-social-and-cta {
    margin-right: 0;
    /* Elimina el margen derecho */
    display: flex;
    align-items: center;
}

#site-header .cheshire-cta-btn {
    background-color: #1379a4;
    color: white;
    padding: 10px;
    border-radius: 50px;
    margin-left: 25px;

}



/* Group social and CTA to the right */
#site-header .cheshire-social-and-cta {
    display: flex;
    align-items: center;
    margin-right: 120px;
    /* Remove any right margin */
    margin-left: auto;
    /* Push this group to the right */
    gap: 13px;
    /* Space between icons and CTA */
}

#site-header .cheshire-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1379a4;
    border: 1px solid #1379a4;
    border-radius: 100px;
    padding: 10px;
    /* Remove padding to keep it perfectly round */
    box-sizing: border-box;
    /* Adjust icon size as needed */

}

.cheshire-cta-btn {
    padding-top: 8px !important;
    padding-bottom: 8px !important;

}



@media (max-width: 767px) {
    #site-header {
        display: none !important
    }
}