/* RESET */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background: #fff; /* белый фон под хедером */
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

/* HEADER — полностью синий */
.header {
    width: 100%;
    background: #0b2343; /* синий фон хедера */
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

/* LOGO */
.logo {
    width: 300px;
    height: auto;
    display: block;
}

.header img {
    max-height: 100px;
    width: auto;
    display: block;
}

/* RIGHT */
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* SEARCH */
.search {
    color: #fff; /* белый текст на синем */
    font-size: 18px;
    cursor: pointer;
}

.search:hover {
    opacity: 0.7;
}

/* SOCIAL */
.socials i {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.socials i:hover {
    opacity: 0.7;
}

/* NAV — тоже синий фон, чтобы хедер был единым блоком */
.nav {
    background: #0b2343;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.nav-left {
    display: flex;
    gap: 25px;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-left a:hover {
    text-decoration: underline;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LIVE */
.live-btn {
    background: red;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 3px;
    background: #fff; /* белые полоски на синем фоне */
    margin: 3px 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-right {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav.open {
        display: flex;
    }

    .nav-left {
        flex-direction: column;
        width: 100%;
    }

    .nav-left a {
        padding: 10px 0;
    }
}

/* КОНТЕНТ ПОД ХЕДЕРОМ */
.main-content {
    background: #fff; /* белый фон для остальной страницы */
}

@media (max-width: 768px) {
  .contenido img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }
}
