/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px; /* Base para REMs */
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Reset End */


body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
.section-premio {
    background-color: #d6dadc;
    padding: 2% 1%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1A2643
}
.texto-informativo-premio{
    padding: 0% 30% 1% 30%;

}
.button-instagram {
    border: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    color:#011957;
    background-color: #FFA500;
    max-width: fit-content;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.625rem;
    margin-top: 7px;
    cursor: pointer;
}
.text-aqua {
    color: #0DACB7;
}
.section-participar {
    background-color: #0DACB7;
    color: white;
    padding: 1rem 1.75rem;
}
.section-participar-body {
    max-width: fit-content;
    width: 100%;
    text-align: left;
}
.title {
    color: #011957;
    margin: 0;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
    padding-left: 0.5em; 
}

ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-size: 1em;
    line-height: 1.2;
}

.selos {
  display: flex;
  align-items: center;
  justify-content: center;   /* mude para space-between se preferir */
  gap: .5rem;
}

.selos a {
  flex: 1 1 0;               /* cada selo ocupa 1/3 do espaço */
  max-width: 33.33%;
}

.footer-selo {
  width: 100%;               /* ocupa toda a largura do a */
  height: auto;              /* mantém proporção */
  max-height: clamp(20px, 100vw, 60px); /* fica “bem menor” e escala com o container/viewport */
  object-fit: contain;       /* garante que não distorça */
  display: block;
}

li {
    font-size: 0.75rem;
}
.formulario-wrapper {
    background-color: #d6dadc;
    padding: 2rem 2.5rem;
}

.formulario {
    background-color: #fff;
    padding: 1.5rem 1.125rem 1rem 1.125rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem; /* Aproximadamente 6px 12px */
    font-size: 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #FEB97A;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::placeholder {
    font-size: 0.625rem;
    color: #bbb9b9;
    opacity: 1;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}


.cidades-container {
    background-color: #89949A;
    color: white;
    font-size: 0.6875rem;
    text-align: start;
}

.cidades-wrapper {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.cidades-wrapper a {
    color: white;
    text-decoration: underline;
}
.cidades-wrapper h5 {
    font-size: .875rem;
    
}

.cidades {
    white-space: pre-wrap ;
}

.cidades-hr {
    border: none;
    height: 1px;
    background-color: white;
    opacity: 0.7;
}

.btn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom {
    background-color: #FF9202;
    color: #1A2643;
    font-weight: bold;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.625rem;
    cursor: pointer;
}

.warning {
    font-size: 0.5rem;
}

@media (min-width: 425px) {
    .section-participar-body {
        margin: 0 auto;
    }

}

.nav {
    background-color: #1A2643;
    padding: 7px 40px;
    display: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner-cinema {
  display: block;
  width: 100%;   /* sempre ocupa 100% da largura */
  height: auto;  /* mantém a proporção */
  object-fit: cover; /* opcional: garante que preencha o espaço sem distorcer */
}

.banner-premios {
    width: 100%;
}

.logo {
    max-height: 30px;
    width: auto;
}

.bx-menu {
    cursor: pointer;
}

@media (min-width: 768px) {
    .button-instagram {
        padding: 2px 15px;
        font-size: 0.875rem;
    }

    .nav {
        display: flex;
        justify-content: space-between;
    }

    .img-premios {
        max-width: 60% !important;
    }

    .cidades-hr {
        width: 70%;
        align-self: center;
    }

    .cidades-wrapper {
        max-width: 600px;   /* Limita a largura */
        margin: 0 auto;     /* Centraliza o bloco */
        text-align: left;   /* Mantém o texto alinhado à esquerda */
    }

}
@media (min-width: 1000px) {
    .img-premios {
        max-width: min(50%, 500px) !important;
    }

}




/*  */

.site-footer {
    background-color: #122245;
    color: white;
    font-size: 0.5rem;
    padding: 1rem 2.5rem;
    display: none; /* Esconder no mobile */
}

@media (min-width: 768px) {
    .site-footer {
        display: block;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 1fr;
    align-items: end;
    gap: 1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-column {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
}

.download-buttons-container {
    display: flex;
    gap: 0.5rem;
}


.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-badge {
    max-width: 100px;
    height: auto;
}

.footer-app {
    max-width: 120px;
    margin-right: 0.5rem;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.footer-social-icons img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.75rem;
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

.footer-hr {
    border: none;
    height: 1px;
    background-color: #0DACB7;
    opacity: 0.7;
    margin: 1.5rem 0;
}


.download {
    height: 20px;
    width: auto;
}


.social-media-container {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 0.5rem;
}
.footer-social-icons .ct-icon-container {
    background-color: white;
    border-radius: 50%;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons svg {
    width: 12px;
    height: 12px;
    color: black;
}

.footer-social-icons svg * {
    fill: currentColor;
}