:root {
    --bbdo-red: #ff0000;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
    overflow-x: clip !important;
    width: 100% !important;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

header.scrolled {
    padding: 0.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

header.on-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    z-index: 2000;
}

.logo img {
    max-height: 45px;
    transition: max-height 0.3s ease;
}

header.scrolled .logo img {
    max-height: 45px;
}

.burger-menu {
    cursor: pointer;
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2000;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white) !important;
}

.blog-hero {
    height: auto;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
}

.blog-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.titulo2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bbdo-red);
}

.blog-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    font-family: 'Nexa', sans-serif;
}

.blog-section {
    padding: 6rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    background: #000;
}

.section-heading-vibe {
    text-align: center;
    font-size: clamp(2rem, 10vw, 3.5rem);
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bbdo-red);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    position: relative;
    overflow: visible;
    height: 580px;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 92%;
    background: rgba(26, 26, 28, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid var(--bbdo-red);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--bbdo-red);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 10;
    margin-bottom: 0;
    display: inline-block;
    letter-spacing: 1px;
}

.blog-post-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-post-excerpt {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    text-transform: capitalize;
}

.blog-read-more {
    display: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #cc0000 0%, #660000 100%);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 3001;
    transition: transform 0.4s ease;
}

.menu-content {
    width: 85%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-left {
    flex: 1;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-link {
    font-size: 3rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.menu-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 3rem;
}

.info-section h3 {
    font-size: 1.4rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1.1rem;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #660000;
    background-color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-footer {
    background-color: #0d0d0f;
    color: var(--white);
    padding-top: 1rem;
    position: relative;
    z-index: 10;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem 1rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 10rem;
}

.footer-headline {
    font-size: 1.5rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    color: #f0f0f0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #1a1a1c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--bbdo-red);
    transform: translateY(-5px);
}

.footer-subtitle {
    font-size: 0.8rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bullet {
    color: var(--bbdo-red);
    font-size: 1rem;
}

.pill-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 400px;
}

.btn-pill {
    padding: 0.3rem 0.8rem;
    background-color: #1a1a1c;
    color: #999;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.72rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-pill:hover {
    background-color: #2a2a2c;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-info p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    word-break: break-word;
}

.footer-bottom {
    background-color: var(--bbdo-red);
    padding: 0.5rem 1rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.privacy-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.post-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 0 2rem;
}

.post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9));
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.post-meta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bbdo-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
}

.post-title-full {
    font-size: 4rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 3px;
}

.post-content-section {
    padding: 3rem 3rem;
    max-width: 1044px;
    margin: 0 auto;
    background: #000;
}

.post-text {
    font-size: 1.2rem;
    font-family: 'Nexa', sans-serif;
    line-height: 1.8;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    text-align: justify;
    text-justify: inter-word;
}

.post-text p {
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}


@media (max-width: 992px) {
    header {
        padding: 1.5rem 1.5rem !important;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem !important;
    }

    .menu-content {
        flex-direction: column !important;
        gap: 2rem !important;
        width: 90% !important;
        padding: 6rem 0 3rem !important;
        height: 100% !important;
        overflow-y: auto !important;
        justify-content: flex-start !important;
    }

    .menu-link {
        font-size: 2.2rem !important;
    }

    .menu-right {
        flex: none !important;
        width: 100% !important;
        flex-direction: column !important;
        gap: 2rem !important;
        padding-top: 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 3rem 1.5rem !important;
    }

    .footer-column {
        text-align: left !important;
    }

    .footer-headline {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .menu-close {
        top: 1.5rem !important;
        right: 1.5rem !important;
        font-size: 3rem !important;
    }

    .logo img {
        max-width: 140px !important;
        max-height: 35px !important;
    }

    .post-title-full {
        font-size: 2.5rem !important;
    }

    .post-content-section {
        padding: 3rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .menu-link {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    .footer-headline {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .blog-hero {
        padding: 6rem 1rem 3rem !important;
    }
}


.featured-news {
    padding: 6rem 1.5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--black);
}

.featured-news a {
    text-decoration: none;
}

.featured-news-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.featured-news-image {
    width: 65%;
    height: 550px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.featured-news-container:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-news-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.news-tag {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 5px;
}

.news-box {
    background: #0d1b3e;

    padding: 3rem;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-box:hover {
    background: #152656;
    transform: translateX(10px);
}

.news-title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 992px) {
    .featured-news {
        padding: 4rem 1rem;
    }

    .featured-news-container {
        flex-direction: column;
        min-height: auto;
    }

    .featured-news-image {
        width: 100%;
        height: 350px;
        margin-bottom: 0;
    }

    .featured-news-content {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: -60px;
        padding: 0 1rem;
    }

    .news-box {
        padding: 2rem;
    }

    .news-title {
        font-size: 1.6rem;
    }
}