:root {
    --wn-container: min(100% - 40px, 1180px);
    --wn-orange: #ff6a16;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    background: #fff;
    border-bottom: 1px solid rgba(8, 33, 72, .08);
    box-shadow: 0 10px 30px rgba(8, 33, 72, .08);
    font-family: Inter, Arial, sans-serif;
}

.site-header .container {
    width: var(--wn-container);
    max-width: 1180px;
    padding-right: 0;
    padding-left: 0;
    margin-inline: auto;
}

.site-header .nav-wrap {
    display: flex;
    min-height: 114px;
    align-items: center;
}

.site-header .brand {
    display: flex;
    flex: 0 0 auto;
    height: 110px;
    padding: 0;
    align-items: center;
    line-height: 0;
}

.site-header .brand img {
    display: block;
    width: 196px;
    height: 110px;
    max-width: none;
    object-fit: contain;
}

.site-header .nav {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    display: flex;
    width: auto;
    min-width: 0;
    margin-left: 18px;
    gap: 18px;
    align-items: center;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
}

.site-header .nav a {
    position: relative;
    color: #123f73;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s ease;
}

.site-header .nav a::after {
    position: absolute;
    right: 100%;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--wn-orange);
    transition: right .24s ease;
}

.site-header .nav a:hover,
.site-header .nav a:focus {
    color: var(--wn-orange);
}

.site-header .nav a:hover::after,
.site-header .nav a:focus::after {
    right: 0;
}

.site-header .nav-dropdown {
    position: relative;
}

.site-header .nav-dropdown summary {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #123f73;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 700;
    list-style: none;
    white-space: nowrap;
}

.site-header .nav-dropdown summary::-webkit-details-marker { display: none; }
.site-header .nav-dropdown summary::after {
    width: 7px;
    height: 7px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}
.site-header .nav-dropdown[open] summary::after { transform: translateY(2px) rotate(225deg); }
.site-header .nav-dropdown summary:hover,
.site-header .nav-dropdown summary:focus { color: var(--wn-orange); }

.site-header .nav-dropdown-menu {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 18px);
    left: -18px;
    display: grid;
    width: 255px;
    padding: 12px;
    gap: 2px;
    background: #fff;
    border: 1px solid #dce7f1;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(8,33,72,.16);
}

.footer_1 .footer-logo {
    width: 140px;
    max-width: 100%;
    height: auto;
}

.site-header .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .84rem;
}
.site-header .nav-dropdown-menu a::after { display: none; }
.site-header .nav-dropdown-menu a:hover,
.site-header .nav-dropdown-menu a:focus { background: #f2f7fc; }

.site-header .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 7px;
    margin-left: auto;
    background: none;
    border: 0;
}

.site-header .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #123f73;
}

.site-header .header-price-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 18px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff7a1a, #f0540d);
    border-radius: 13px;
    box-shadow: 0 12px 24px rgba(240, 84, 13, .24);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-header .header-price-cta:hover,
.site-header .header-price-cta:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(240, 84, 13, .3);
}

@media (max-width: 1180px) {
    .site-header .nav-wrap { min-height: 104px; }
    .site-header .brand { height: 100px; }
    .site-header .brand img { width: 178px; height: 100px; }
    .site-header .nav { gap: 14px; }
    .site-header .nav a { font-size: .82rem; }
    .site-header .nav-dropdown summary { font-size: .82rem; }
    .site-header .header-price-cta { display: none; }
}

@media (max-width: 1080px) {
    .site-header .nav-wrap { position: relative; min-height: 84px; }
    .site-header .brand { height: 80px; }
    .site-header .brand img { width: 142px; height: 80px; }
    .site-header .menu-toggle { display: block; cursor: pointer; }
    .site-header .nav {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        display: none;
        padding: 22px;
        margin: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        background: #fff;
        border-top: 1px solid #e4edf5;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 18px 32px rgba(8, 33, 72, .14);
    }
    .site-header .nav.open { display: flex; }
    .site-header .nav a { font-size: .95rem; }
    .site-header .nav a::after { display: none; }
    .site-header .nav-dropdown summary { font-size: .95rem; }
    .site-header .nav-dropdown-menu {
        position: static;
        width: auto;
        padding: 9px;
        margin-top: 10px;
        background: #f5f9fd;
        border-radius: 12px;
        box-shadow: none;
    }
}

@media (max-width: 560px) {
    :root { --wn-container: min(100% - 28px, 1180px); }
    .site-header .nav-wrap { min-height: 69px; }
    .site-header .brand { height: 65px; }
    .site-header .brand img { width: 116px; height: 65px; }
    .site-header .nav { top: 69px; }
}

/* Cabeçalho em três áreas: marca, navegação central e telefone */
.site-header .nav-wrap {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    column-gap: 24px;
}

.site-header .brand { justify-self: start; }
.site-header .nav {
    margin-left: 0;
    justify-self: center;
    flex: none;
}

.site-header .header-phone {
    display: inline-flex;
    min-height: 46px;
    padding: 0 17px;
    align-items: center;
    justify-self: end;
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a1a, #f0540d);
    border-radius: 13px;
    box-shadow: 0 12px 24px rgba(240, 84, 13, .24);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-header .header-phone:hover,
.site-header .header-phone:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(240, 84, 13, .3);
}

@media (max-width: 1080px) {
    .site-header .nav-wrap { grid-template-columns: 1fr auto; }
    .site-header .menu-toggle { grid-column: 2; grid-row: 1; }
    .site-header .header-phone { display: none; }
}

/* Rodapé compartilhado, inspirado na identidade da área de streaming */
.shared-footer {
    position: relative;
    overflow: hidden;
    padding: 44px 0 18px;
    color: #dbe9f8;
    background: #031a3d;
    font-family: Inter, Arial, sans-serif;
}
.shared-footer::before {
    position: absolute;
    right: -15%;
    bottom: -120px;
    left: -15%;
    height: 230px;
    content: "";
    background: radial-gradient(ellipse at center, rgba(255,105,20,.2), transparent 55%);
}
.shared-footer .container {
    width: var(--wn-container);
    max-width: 1180px;
    padding-right: 0;
    padding-left: 0;
}
.shared-footer .footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.shared-footer .footer-brand img {
    display: block;
    width: 190px;
    height: auto;
    margin-bottom: 14px;
}
.shared-footer .footer-brand p {
    margin: 0;
    color: #a9bfd8;
    font-size: .87rem;
    line-height: 1.6;
}
.shared-footer .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}
.shared-footer a { color: #dce9f8; text-decoration: none; }
.shared-footer a:hover,
.shared-footer a:focus { color: #ff7a1a; }
.shared-footer .footer-contact a { font-size: .86rem; }
.shared-footer .footer-bottom {
    position: relative;
    display: flex;
    padding-top: 18px;
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #7896b6;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .73rem;
}
.shared-footer .footer-legal-links {
    position: static;
    display: flex;
    width: auto;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 820px) {
    .shared-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .shared-footer .footer-contact { justify-content: flex-start; }
    .shared-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
}
