/* styles.css */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

header {
    background: transparent;
    padding: 10px 0;
    text-align: left;
    padding-left: 20px;
    position: absolute;
    width: 100%;
    z-index: 2; /* Elevar o header acima do background */
}

.logo {
    width: 100px;
    padding: 1rem 5%;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/background-image.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    position: relative;
    height: 100vh; /* Limita a altura para 100% da altura da tela */
    box-sizing: border-box; /* Inclui padding na altura total */
    z-index: 1; /* Background fica atrás do header */
}

.hero-content,
.hero-images {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.hero-content {
    text-align: left;
    padding: 1rem 5%;
}

.hero h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.hero h1 .highlight {
    font-size: 48px;
    color: #b22718;
}

.hero p {
    color: #555;
    font-size: 18px;
    margin: 10px 0;
}

.hero p.regular {
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: #b22718;
    color: #fff;
    align-content: center;
    padding: 15px 30px;
	font-weight: bold;
    text-decoration: none;
    font-size: 30px;
    margin-top: 10px;
}

.cta-button:hover {
    background: #c9302c;
}

.blinking {
    color: #a94442;
    font-size: 14px;
    margin-top: 20px;
    animation: blinker 1s linear infinite;
    font-weight: 300; /* Montserrat Light */
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: bounce 5s infinite; /* Adiciona a animação de bounce */
}

.hero-images .tickets {
    width: 700px; /* Aumenta o tamanho da imagem para melhor visualização */
    margin: 10px 0;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer p {
    font-size: 14px;
    margin: 0 0 10px;
}

footer .logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer .logos img {
    width: auto;
    height: 30px;
    margin: 10px;
}

/* Responsividade para Tablet */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content,
    .hero-images {
        width: 100%;
        padding: 10px;
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero h1 .highlight {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-images .tickets {
        width: 400px;
    }
}

/* Responsividade para Mobile */
@media (max-width: 480px) {
    header {
        text-align: center;
        padding-left: 0;
    }

    .logo {
        width: 100px;
        padding: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content,
    .hero-images {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 18px;
    }

    .hero h1 .highlight {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-images .tickets {
        width: 300px;
    }
}
