@font-face {
    font-family: 'HeinekenSerif';
    src: url('webfonts/HeinekenSerif18-Bold.woff2') format('woff2'),
        url('webfonts/HeinekenSerif18-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --heineken-green: #0c7238;
    --heineken-red: #d8121a;
}

body {
    margin: 0;
    font-family: sans-serif;
}

#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#disclaimer {
    display: none;
    color: var(--heineken-red);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: sans-serif;
}

.age-gate-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.star-logo {
    margin-bottom: 20px;
}

h2.title {
    color: #1a7a24;
    font-family: 'Georgia', serif;
    font-size: 28px;
    margin: 0 0 20px 0;
}

.question {
    font-weight: 700;
    font-size: 18px;
    color: #222;
    margin: 0 0 30px 0;
    font-family: 'Georgia', serif;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.btn {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 16px;
    width: 90px;
    height: 44px;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-yes {
    background-color: #2b7a0b;
    color: white;
    border: 2px solid white;
    outline: 2px solid #2b7a0b;
}

.btn-yes:hover {
    background-color: #216008;
}

.btn-no {
    background-color: white;
    color: #2b7a0b;
    border: 2px solid #2b7a0b;
}

.btn-no:hover {
    background-color: #f0f0f0;
}

.footer-text {
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: sans-serif;
}

/* Navbar Section */
.heineken-navbar {
    background-color: var(--heineken-green);
}

.heineken-navbar .nav-link {
    color: #fff !important;
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heineken-navbar .nav-link:hover {
    color: #e6e6e6 !important;
}

.heineken-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.heineken-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Steps Section */
.steps-title {
    color: var(--heineken-green);
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.steps-subtitle {
    color: #1a7a24;
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.step-badge {
    background-color: var(--heineken-green);
    color: #fff;
    border-radius: 50px;
    padding: 8px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-desc {
    color: var(--heineken-green);
    font-family: 'HeinekenSerif', 'Georgia', serif;
    line-height: 1.4;
    font-weight: bold;
}

.steps-footer {
    color: var(--heineken-green);
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 50px;
}

.step-icon img {
    height: 80px;
    object-fit: contain;
}

/* Premio Section */
.premio {
    background-color: var(--heineken-green);
    overflow: hidden;
}

.premio-title {
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premio-box-container {
    width: 100%;
    max-width: 680px;
    min-height: 140px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.premio-tickets-img {
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 320px;
    z-index: 10;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
}

.premio-text-box {
    color: var(--heineken-green);
    font-family: 'HeinekenSerif', 'Georgia', serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

/* Footer Section */
footer {
    background-color: var(--heineken-green);
    color: #fff;
    font-family: 'HeinekenSerif', 'Georgia', serif;
}

footer p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

footer a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
}

footer a:hover {
    text-decoration: none;
}

/* MEDIA QUERY */
@media (max-width: 991px) {
    .logo {
        width: 6rem;
    }

    .premio-box-container {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding-top: 100px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 30px !important;
        margin-top: 100px;
        max-width: 480px;
    }

    .premio-tickets-img {
        left: 50%;
        top: 0;
        transform: translate(-50%, -60%);
        width: 250px;
    }

    .premio-text-box {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}