﻿/*festival 2026*/
:root {
    --verde-festival: #a0ff56;
}

/* Banner da página de eventos presenciais */
.evento-presencial {
    background-color: #171923;
    color: #ffffff;
    overflow: hidden;
}

.evento-presencial-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 530px;
    padding: 86px 24px 76px;
    overflow: hidden;
}

.evento-presencial-card {
    position: relative;
    z-index: 1;
    width: min(940px, 100%);
    padding: 36px 64px 40px;
    border-radius: 14px;
    background-color: #38394e;
    text-align: center;
}

.evento-presencial-titulo {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.evento-presencial-titulo span {
    color: var(--verde-festival);
    font-weight: 700;
}

.evento-presencial-titulo strong {
    font-weight: 700;
}

.evento-presencial-descricao {
    max-width: 830px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.35;
}

.evento-presencial-elemento {
    position: absolute;
    top: 50%;
    z-index: 0;
    width: clamp(170px, 20vw, 315px);
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.evento-presencial-elemento--esquerda {
    left: clamp(-195px, -9vw, -95px);
}

.evento-presencial-elemento--direita {
    right: clamp(-195px, -9vw, -95px);
    transform: translateY(-50%) scaleX(-1);
}

/* Programação presencial */
.evento-programacao {
    padding: 34px 24px 90px;
    background-color: #171923;
    color: #ffffff;
}

.evento-programacao-container {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.evento-programacao-titulo {
    margin: 0 0 74px;
    color: #ffffff !important;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}

.evento-programacao-dia {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    margin-bottom: 38px;
}

.evento-programacao-dia span {
    height: 4px;
    border-radius: 999px;
    background-color: #363847;
}

.evento-programacao-dia h3 {
    margin: 0;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
}

.evento-programacao-dia--seguinte {
    margin-top: 68px;
}

.evento-programacao-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.evento-programacao-card {
    position: relative;
    min-height: 205px;
    overflow: visible;
    border: 2px solid transparent;
    border-radius: 11px;
    background-color: #08090c;
    transition: border-color .2s ease, transform .2s ease;
}

.evento-programacao-card.ativo {
    border-color: #ffffff;
    transform: translateY(-2px);
    z-index: 2;
}

.evento-programacao-card.ativo::after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 16px 24px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent;
    content: "";
    transform: translateX(-50%);
}

.evento-programacao-card > img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    object-fit: cover;
}

.evento-programacao-card::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 20%, rgba(0, 0, 0, .92) 100%);
    content: "";
}

.evento-programacao-card-conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 205px;
    border-radius: 9px;
    padding: 16px 14px 13px;
}

.evento-programacao-card-tipo,
.evento-programacao-detalhe-tipo {
    margin: 0 0 3px;
    color: #f34bd5;
    font-size: 14px;
    font-weight: 700;
}

.evento-programacao-card-tipo--amarelo {
    color: #ffe91c;
}

.evento-programacao-card h4 {
    margin: 0;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.08;
}

.evento-programacao-card h4 + p {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.15;
}

.evento-programacao-card-acoes {
    display: flex;
    gap: 11px;
    margin-top: 12px;
}

.evento-programacao-participar,
.evento-programacao-saiba-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    border: 0;
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    transition: opacity .2s ease, transform .2s ease;
}

.evento-programacao-participar:hover,
.evento-programacao-participar:focus {
    color: #ffffff;
    text-decoration: none;
}

.evento-programacao-participar {
    background-color: #f34bd5;
    color: #ffffff;
}

.evento-programacao-participar--amarelo {
    background-color: #ffe91c;
    color: #1e1e1e;
}

.evento-programacao-participar--amarelo:hover,
.evento-programacao-participar--amarelo:focus {
    color: #1e1e1e;
}

.evento-programacao-saiba-mais {
    background-color: #ffffff;
    color: #22232c;
}

.evento-programacao-participar:hover,
.evento-programacao-saiba-mais:hover {
    opacity: .86;
    transform: translateY(-1px);
}

.evento-programacao-detalhe {
    position: relative;
    display: block;
    width: 100vw;
    max-height: 0;
    margin-top: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-color: #050505;
    opacity: 0;
    transition: max-height .45s ease, margin-top .3s ease, opacity .25s ease;
}

.evento-programacao-detalhe::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, #000000 0%, #000000 37%, rgba(0, 0, 0, .9) 45%, rgba(0, 0, 0, .58) 55%, rgba(0, 0, 0, .18) 65%, rgba(0, 0, 0, 0) 76%);
    content: "";
    pointer-events: none;
}

.evento-programacao-detalhe.aberto {
    max-height: 1100px;
    margin-top: 32px;
    opacity: 1;
}

.evento-programacao-detalhe-texto {
    position: relative;
    z-index: 2;
    width: min(52%, 850px);
    min-height: clamp(430px, 28vw, 540px);
    padding: 42px 64px 38px clamp(60px, 5.5vw, 120px);
}

.evento-programacao-fechar {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 28px;
    left: auto;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}

.evento-programacao-detalhe-tipo {
    margin-bottom: 14px;
    font-size: 19px;
}

.evento-programacao-detalhe-titulo {
    max-width: 470px;
    margin: 0;
    color: #ffffff;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.05;
}

.evento-programacao-detalhe-convidados {
    margin: 17px 0 28px;
    color: #ffffff;
    font-size: 17px;
}

.evento-programacao-detalhe-descricao {
    max-width: 550px;
    margin-bottom: 24px;
    color: #e7e7e7;
    font-size: 16px;
    line-height: 1.28;
}

.evento-programacao-detalhe-descricao p {
    margin: 0 0 16px;
}

.evento-programacao-detalhe-imagem {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 100%;
    min-height: clamp(430px, 28vw, 540px);
    background-color: #000000;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .evento-programacao {
        padding-right: 0;
        padding-left: 0;
    }

    .evento-programacao-titulo {
        margin-bottom: 64px;
        font-size: 28px;
    }

    .evento-programacao-dia {
        gap: 36px;
        padding: 0 84px;
    }

    .evento-programacao-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        overflow: visible;
        padding: 0 24px 24px;
        scroll-snap-type: none;
    }

    .evento-programacao-card {
        scroll-snap-align: none;
    }

    .evento-programacao-detalhe-texto {
        width: 78%;
        min-height: 440px;
        padding: 38px 70px;
    }

    .evento-programacao-detalhe-titulo {
        font-size: 29px;
    }

    .evento-programacao-detalhe-descricao {
        max-width: 520px;
        font-size: 15px;
    }

    .evento-programacao-detalhe-imagem {
        width: 58%;
        min-height: 440px;
    }

    html,
    body {
        height: auto !important;
        min-height: 100%;
        overflow-y: auto !important;
    }

    .evento-presencial,
    .evento-programacao,
    .evento-programacao-container {
        overflow: visible;
    }

    #content {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    #footer {
        position: relative !important;
        display: block !important;
        clear: both !important;
        height: auto !important;
        min-height: 180px;
        max-height: none !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        clip: auto !important;
        transform: none !important;
    }
}

/* O Bootstrap oculta visible-sm e visible-lg entre 992px e 1199px. */
@media (min-width: 992px) and (max-width: 1199px) {
    #footer .parceiros .parceiros-logos.visible-lg {
        display: block !important;
        visibility: visible !important;
    }

    #footer .parceiros > .row.text-center.hidden-sm.hidden-lg {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .evento-presencial-banner {
        min-height: 0;
        padding: 100px 16px 58px;
    }

    .evento-presencial-card {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .evento-presencial-titulo {
        margin-bottom: 22px;
        font-size: 25px;
    }

    .evento-presencial-descricao {
        font-size: 17px;
        line-height: 1.4;
    }

    .evento-presencial-elemento {
        top: 20px;
        width: 160px;
        transform: none;
        opacity: .9;
    }

    .evento-presencial-elemento--esquerda {
        left: -105px;
    }

    .evento-presencial-elemento--direita {
        right: -105px;
        transform: scaleX(-1);
    }

    .evento-programacao {
        padding: 20px 16px 54px;
    }

    .evento-programacao-titulo {
        margin-bottom: 46px;
        font-size: 25px;
    }

    .evento-programacao-dia {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 27px;
        text-align: center;
    }

    .evento-programacao-dia span:last-child {
        display: none;
    }

    .evento-programacao-dia h3 {
        font-size: 19px;
    }

    .evento-programacao-dia--seguinte {
        margin-top: 52px;
    }

    .evento-programacao-cards {
        display: grid;
        grid-auto-columns: 82vw;
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: 0 9vw 24px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .evento-programacao-cards::-webkit-scrollbar {
        display: none;
    }

    .evento-programacao-card,
    .evento-programacao-card-conteudo {
        min-height: 230px;
    }

    .evento-programacao-card {
        scroll-snap-align: center;
    }

    .evento-programacao-detalhe {
        width: auto;
        margin-right: 0;
        margin-left: 0;
    }

    .evento-programacao-detalhe.aberto {
        max-height: 1500px;
        margin-top: 28px;
    }

    .evento-programacao-detalhe-texto {
        width: 100%;
        padding: 44px 28px 30px;
    }

    .evento-programacao-detalhe-titulo {
        font-size: 27px;
    }

    .evento-programacao-detalhe-imagem {
        display: none;
    }
}


    html {
        overflow-x: hidden !important;
    }


.btn-verde {
    border-radius: 25px;
    color: #000000 !important;
    background-color: var(--verde-festival);
    transition: 0.2s ease;
    min-width: 230px !important
}

    .btn-verde:hover {
        opacity: 0.8;
    }

.bg-single {
    margin-top: 60px;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* imagem única como background */
    background-image: url('/assets/img/festival2026/maos_juntas.png?v=1.0.0');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
}

/* overlay para aumentar contraste do texto */
.banner-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: normal;
    z-index: 1;
}

/* conteúdo por cima */
.banner-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.banner-festival h1 { /* ... estilos do h1 como antes ... */
}

/* leve desfoque/desaturação no background (opcional, não funciona em todos os navegadores) */
.bg-single::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.inscricoes-abertas {
    font-size: 6em;
    color: #fff !important;
}

.inscircoes-abertas-subtitulo {
    font-size: 2em;
    margin-bottom: 50px;
}

.texto-verde-festival {
    color: var(--verde-festival);
    font-weight: 500;
}

.texto-descricao {
    margin-top: 100px;

    @media (max-width:821px) {
        margin-top: 10%;
    }

    @media (max-width:481px) {
        margin-top: -50px;
    }
}

.texto-banner {
    max-width: 840px; /* ajuste até que quebre em 3 linhas */
    margin: 0 auto;
    text-align: center;
    font-size: 2em;
    line-height: 1.4; /* garante legibilidade */
    color: #ffffff;

    @media (max-width:481px) {
        font-size: 1.3em;
    }
}

.sobre-festival {
    position: relative;
    padding: 100px 0;
    margin-top: 200px;

    @media (max-width:768px) {
        margin-top: -70px;
    }
}

    .sobre-festival .sobre-festival-banner {
        position: relative; /* chave para prender as imagens aqui */
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Título */
    .sobre-festival .titulo {
        text-align: center;
        font-size: 4rem;
        font-weight: 300;
        color: #fff !important;
        margin-bottom: 60px;
    }

        .sobre-festival .titulo span {
            color: #f2ff43;
            font-weight: 700;
        }


/* Cards */
.card-festival {
    background: #3c3c50;
    padding: 35px 35px;
    border-radius: 4px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    min-height: 300px;
    position: relative;
    z-index: 10;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media (min-width: 1000px) and (max-width: 1024px) {
        font-size: 16px;
    }
}

    .card-festival .highlight {
        color: #f2ff43;
        font-weight: 700;
    }

/* DECORAÇÕES LATERAIS ------------------------ */

.decor-esquerda,
.decor-direita {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none; /* evita clique */
}

.decor-esquerda {
    left: -220px;
}
/* ajuste fino */
.decor-direita {
    right: -220px;
}


    .decor-esquerda img,
    .decor-direita img {
        width: 320px; /* ajuste conforme a arte */
        max-width: 40vw; /* responsivo */
        height: auto;
        filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
    }

/* RESPONSIVO */
@media (max-width: 992px) {
    .decor-esquerda img,
    .decor-direita img {
        width: 220px;
        max-width: 35vw;
    }
}


@media (max-width: 481px) {
    .bg-single {
        padding-top: 90px;
        min-height: 500px;
        background-image: url('/assets/img/festival2026/maos_juntas_mobile.png?v=1.0.0');
    }

    .banner-content {
        margin-top: -100px;
    }

    .inscricoes-abertas {
        font-size: 4em;
        line-height: 1;
    }

    .inscircoes-abertas-subtitulo {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .banner-content .btn-verde{
        margin-bottom: 100px;
    }
}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {
    .bg-single {
        margin-top: 60px;
        position: relative;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        /* imagem única como background */
        background-image: url('/assets/img/festival2026/maos_juntas.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
        background-size: cover;
    }

    .inscricoes-abertas {
        font-size: 4em;
    }

    .inscircoes-abertas-subtitulo {
        font-size: 1.3em
    }
}

/* Mobile ajustado */
@media (max-width:968px) {

    .sobre-festival-banner {
        position: relative;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container, .row {
        position: relative;
    }

    .decor-esquerda,
    .decor-direita {
        position: absolute !important;
        transform: none !important;
        z-index: 0 !important;
        opacity: 0.9;
        pointer-events: none;
    }

        .decor-esquerda img,
        .decor-direita img {
            width: 320px;
            max-width: 60vw;
        }


    .decor-esquerda {
        top: 15%;
        left: -65px; /* empurra mais para a lateral */
    }

    .decor-direita {
        top: 50%;
        right: -65px; /* empurra mais para a lateral */
        text-align: right;
    }

    .card-festival {
        position: relative;
        z-index: 2;
        margin-bottom: 35px;
        padding: 16px 14px; /* menor */
        line-height: 1.45;
        min-height: 220px; /* antes 300px */
        font-size: 1.3em
    }


    .sobre-festival .titulo {
        margin-bottom: 30px;
    }
}

.destaques-festival {
    padding: 80px 0;

    @media (max-width:821px) {
        padding: 0;
        margin-top:-30px;
    }
}

.img-destaque {
    max-width: 260px;
    width: 70%;
    height: auto;
    margin-bottom: 25px;
}

.texto-destaque {
    line-height: 1.6;
    color: #fff;
    max-width: 360px;
    margin: 0 auto;
}

.highlight-amarelo {
    color: #f2ff43;
    font-weight: 700;
}

.highlight-azul {
    color: #29c2ff;
    font-weight: 700;
}

.highlight-rosa {
    color: #ff4ad8;
    font-weight: 700;
}

.destaques-festival .col-bloco {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Todas as imagens terão a mesma altura de referência */
.img-destaque {
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;

    @media (max-width:768px) {
        width: 60%;
        max-width: 220px;
    }
}

/* Wrapper que mantém o texto inteiro sem quebrar */
.texto-destaque {
    min-height: 160px; /* controla o alinhamento vertical */
    display: flex;
    justify-content: center; /* centraliza verticalmente */
    text-align: center; /* centraliza horizontalmente */
}

    .texto-destaque p {
        margin: 0;
        line-height: 1.5;
        font-size: 20px;

        @media (max-width:768px) {
            font-size: 18px;
        }
    }

.mostra-oj {
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

/* ESTRELA DO TOPO */
.estrela-topo img {
    width: 80px;
    margin-bottom: 25px;
}

/* TÍTULO PRINCIPAL */
.titulo-mostra {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}

    .titulo-mostra span {
        color: #a0ff56; /* verde festival */
        font-weight: 600;
    }

.subtitulo-mostra {
    font-size: 20px;
    margin: 0 auto 20px;
    opacity: 0.9;

    @media (max-width: 768px) {
        max-width: 250px;
    }
}

.descricao-mostra {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 70px auto;
    max-width: 500px;
    color: #7883a1;

    @media (max-width: 768px) {
        max-width: 300px;
    }
}

/* TÍTULO PREMIAÇÕES */
.titulo-premiacoes {
    font-size: 4rem;
    margin-bottom: 50px;
    font-weight: bold;
}

/* BLOCO DE PREMIAÇÕES */
.bloco-premiacoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    margin-bottom: 70px;
    margin-left: 15px;
    margin-right: 15px;
}

.item-premio {
    text-align: center;
}

.titulo-premio {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.valor-premio {
    font-size: 2rem;
    color: #a0ff56;
    font-weight: 700;
}

/* IMAGEM CENTRAL */
.imagem-boneca img {
    width: 260px;
    object-fit: contain;
}

/* BOTÕES */
.botoes-mostra {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;

    @media (max-width: 768px) {
        flex-direction: column;
        padding: 0 40px 0 40px;
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .bloco-premiacoes {
        flex-direction: column;
        gap: 40px;
    }

    .valor-premio {
        font-size: 1.8rem;
    }

    .titulo-mostra,
    .titulo-premiacoes,
    .titulo-cronograma {
        font-size: 3.5rem !important
    }
}

/*cronograma*/

.cronograma-2026 {
    margin-top: 100px;
}

.titulo-cronograma {
    font-size: 4rem;
    margin-bottom: 50px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}
/* Base: esconde tudo */
.cal-desktop,
.cal-mobile,
.cal-tablet-1,
.cal-tablet-2 {
    display: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cal-mobile {
    max-width: 200px;
}

.cal-desktop {
    max-width: 1000px;
}


/* ----------------------------- */
/* DESKTOP — apenas calendario.png */
@media (min-width: 1200px) {
    .cal-desktop {
        display: block;
    }
}

/* ----------------------------- */
/* MOBILE — apenas calendario-mobile.png */
@media (max-width: 767px) {
    .cal-mobile {
        display: block;
    }
}

/* ----------------------------- */
/* TABLET (768px até 1199px) — exibe AS DUAS imagens */
@media (min-width: 768px) and (max-width: 1199px) {
    .cal-tablet-1,
    .cal-tablet-2 {
        display: block;
    }

    /* Deixar com espaçamento */
    .cal-tablet-1 {
        margin-bottom: 40px;
    }
}

/*quem pode participar*/

/* Título */
.quem-pode-participar {
    margin-top: 100px;
}

.titulo-quem {
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Container Desktop */
.participar-desktop {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 40px auto;
}

/* Imagens Desktop */
.img-desktop {
    display: block;
    width: auto;    
    height: 250px;
}

/* Esconde mobile e tablet por padrão */
.participar-mobile,
.participar-tablet {
    display: none;
}

/* TABLET: 482px–991px */
@media (min-width: 482px) and (max-width: 991px) {

    .participar-desktop {
        display: none;
    }

    .participar-tablet {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 20px auto;
    }

    .img-tablet {
        width: 100%;
        max-width: 700px;
        height: auto;
    }
}

/* MOBILE: até 768px */
@media (max-width: 481px) {

    .img-estrelas {
        margin-top: -64px;
        margin-bottom: -44px;
    }

    .participar-desktop,
    .participar-tablet {
        display: none;
    }

    .participar-mobile {
        display: block;
        text-align: center;
        margin: 20px auto;
    }

    .img-mobile {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto 20px;
    }
}
