@font-face {
    font-family: 'Helvetica Neue';
    src: url('../../fonts/Helvetica-Neue-LT-Std-45-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --corpeduff-blue:          #0d76a7;
    --corpeduff-header-height: clamp(50px, 5.5vw, 80px);
    --corpeduff-font-family:   'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    overflow-x: hidden;
}

body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th,
input, button, textarea, select {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.corpeduff-header {
    background-color: var(--corpeduff-blue);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    padding: 0 3.5vw;
    height: var(--corpeduff-header-height) !important;
    max-height: var(--corpeduff-header-height) !important;
    min-height: var(--corpeduff-header-height) !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

/* Nav: ocupa las 5 primeras columnas en sub-grid */
.corpeduff-header__nav {
    grid-column: 1 / 6;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
}

.corpeduff-header__nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--corpeduff-font-family) !important;
    font-size: clamp(0.9rem, 1.1vw, 1.5rem);
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.corpeduff-header__nav a:hover {
    opacity: 0.75;
}

/* Social icons: columna 6 */
.corpeduff-header__social {
    grid-column: 6 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25vw;
}

.corpeduff-header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.corpeduff-header__social-link:hover {
    opacity: 0.8;
}

.corpeduff-header__social-icon {
    width: clamp(24px, 2.8vw, 40px);
    height: clamp(24px, 2.8vw, 40px);
}
