@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 34px;
}

.menu {
    display: flex;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.mobile-icons {
    display: none;
    gap: 18px;
    font-size: 20px;
    align-items: center;
}


.menu a:hover {
    color: #148194;
}


.banner img {
    width: 100%;
    display: block;
}

.ingresso,
main,
.informativo,
.mapa {
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 6px;
}

.mapa-interno {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.mapa-frame {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* mobile */
@media (max-width: 768px) {
    .mapa-frame {
        height: 380px;
    }
}



.ingresso {

    background-color: #eeecec;
    box-shadow: 4px 4px 10px grey;
}

.info-portoes{

    background: #fff;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 6px;
    background-color: rgb(253, 253, 184);
    border: 2px solid yellow;
}

.info-portoes, p{
    font-size: 0.9rem;
}


.ingresso h3 {
    margin-bottom: 15px;
}

.opcao {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.disponível {
    background: #e6f7ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.indisponivel {
    background: #ddd;
    color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.badge-esgotado {
    background: #c0392b;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}


.mapa iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.banner{

    width: 100%;
}

.contador {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.contador button {
    width: 36px;
    height: 36px;
    border: none;
    background: #2f4f4f;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.contador button:disabled {
    background: #999;
    cursor: not-allowed;
}

.contador .quantidade {
    width: 20px;
    text-align: center;
    font-weight: bold;
    background: #fff;
}


.finalizacao {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.valor-unitario {
    font-weight: bold;
    font-size: 16px;
}

.btn-finalizar {
    background: #2f4f4f;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-finalizar:disabled {
    background: #aaa;
    cursor: not-allowed;
}


.informativo{

    background: #fff;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    border-radius: 6px;
    background-color: rgb(253, 253, 184);
    border: 2px solid yellow;

}

.hero {
    position: relative;
    width: 100%;
    height: 420px; /* altura do banner */
    overflow: hidden;
    background: black;
    border-radius: 12px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 isso é o segredo */
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.85)
    );
}

.hero-content {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 6px;
}

.hero-meta {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-info {
    max-width: 480px;
}

.hero-info h1 {
    font-size: 32px;
    margin: 10px 0;
}

.hero-info h2 {
    font-size: 22px;
    font-weight: 300;
    color: #ccc;
}

.detalhes div {
    margin-top: 10px;
    font-size: 15px;
}

.voltar {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.hero-poster img {
    
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    max-width: 480px;
}


.footer {
    background: #0c0c0c;
    color: #ccc;
    margin-top: 60px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #fff;
}

.footer .brand img {
    width: 140px;
    margin-bottom: 15px;
}

.footer .brand p {
    max-width: 280px;
    line-height: 1.6;
}

.cnpj {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 12px;
}

.pagamentos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pagamentos img {
    height: 28px;
}

.seguranca {
    margin-top: 15px;
    font-size: 12px;
    color: #9fd4ff;
}

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 15px;
    color: #777;
    font-size: 12px;
}


.local-info {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.local-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.local-logo img {
    width: 120px;
    border-radius: 10px;
}

.local-dados {
    flex: 1;
}

.rating {
    font-size: 18px;
    margin-bottom: 10px;
}

.rating .stars {
    color: #f5b300;
    margin-left: 8px;
}

.rating .reviews {
    color: #777;
    font-size: 14px;
    margin-left: 10px;
}

.endereco {
    margin-bottom: 20px;
    font-size: 16px;
}

.endereco a {
    color: #007bff;
    text-decoration: none;
}

.metricas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.metricas div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.metricas .stars {
    color: #f5b300;
}

/* Mobile */
@media (max-width: 768px) {
    .local-box {
        flex-direction: column;
    }

    .local-logo {
        text-align: center;
    }
}





/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}




@media (max-width: 768px) {

   .menu {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }

    .header {
        padding: 12px 16px;
    }


    .disponível {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .finalizacao {
        width: 100%;
        justify-content: space-between;
    }

    .btn-finalizar {
        width: 100%;
        justify-content: center;
    }

    .contador {
        width: 100%;
        justify-content: space-between;
    }

    @media (max-width: 768px) {
    .hero-overlay {
        flex-direction: column;
        text-align: center;
    }

    .hero-poster img {
        width: 100%;
        max-width: none;
    }
}

}

 @media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    .ingresso {
        padding: 20px;
    }

    .opcao {
        padding: 16px;
        font-size: 16px;
    }

    .contador button {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .contador .quantidade {
        width: 50px;
        font-size: 18px;
    }

    .btn-finalizar {
        padding: 16px;
        font-size: 16px;
    }

    .badge-esgotado {
        padding: 6px 10px;
        font-size: 12px;
    }

    .hero-info h1 {
        font-size: 24px;
    }

    .hero-info h2 {
        font-size: 18px;
    }
}
