/* ============================================================
   RESET UNIVERSAL
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
   ESPAÇAMENTO GLOBAL
   ============================================================ */
p {
    margin-bottom: 12px;
}

.card > *:not(:last-child) {
    margin-bottom: 16px;
}

.row > * {
    margin-bottom: 20px;
}

/* ============================================================
   LAYOUT GERAL
   ============================================================ */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.leftCol {
    flex: 70%;
}

.rightCol {
    flex: 30%;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

/* ============================================================
   LINHA FULL-WIDTH PARA AS 3 PRIMEIRAS FOTOS
   ============================================================ */
.row-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.row-full .leftCol {
    width: 100%;
    flex: 100%;
}

/* ============================================================
   IMAGENS FULL-WIDTH (3 PRIMEIROS CARDS)
   ============================================================ */
.row-full .card div[style*="background-image"] {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================
   ALTURAS PERSONALIZADAS
   ========================= */

/* FOTO 1 — Cartaz do evento */
.row-full .card:nth-of-type(1) div[style*="background-image"] {
    padding-top: 160%;
}

/* FOTO 2 — Foto da banda */
.row-full .card:nth-of-type(2) div[style*="background-image"] {
    padding-top: 85%;
}

/* FOTO 3 — Mapa das mesas */
.row-full .card:nth-of-type(3) div[style*="background-image"] {
    padding-top: 110%;
}


/* Responsivo */
@media (max-width: 768px) {
    .row-full .card div[style*="background-image"] {
        height: 220px;
    }
}

/* ============================================================
   IMAGENS NORMAIS (OUTROS CARDS)
   ============================================================ */
.card div[style*="background-image"] {
    width: 100%;
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}

/* ============================================================
   IFRAMES
   ============================================================ */
.iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* ============================================================
   CABEÇALHO
   ============================================================ */
.header {
    width: 100%;
    background: #111;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header p {
    font-size: 20px;
    opacity: 0.85;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media screen and (max-width: 900px) {
    .leftCol, .rightCol {
        flex: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header h1 {
        font-size: 32px;
    }

    .header p {
        font-size: 16px;
    }

    .card {
        padding: 15px;
    }
}

/* =========================
   ALTURAS AJUSTADAS SEM CORTES
   ========================= */

/* FOTO 1 — Cartaz do evento (vertical) */
.row-full .card:nth-of-type(1) div[style*="background-image"] {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-top: 150%; /* aumenta a área visível */
    background-size: cover;
    background-position: top center; /* mostra mais do topo */
    background-repeat: no-repeat;
}

/* FOTO 2 — Foto da banda (horizontal) */
.row-full .card:nth-of-type(2) div[style*="background-image"] {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-top: 95%; /* aumenta a altura para não cortar os pés e cabeças */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FOTO 3 — Mapa das mesas (quase quadrada) */
/*.row-full .card:nth-of-type(3) div[style*="background-image"] {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-top: 125%; /* mostra mais do topo e do rodapé */
/*    background-size: contain;*/ /* garante que nada seja cortado */
/*  background-position: center;
    background-repeat: no-repeat;
}
*/
h2 {
    font-style: italic;
}

.row-full .card:nth-of-type(1) h2 {
    text-align: center;
}