@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;0,800;0,900;1,800;1,900&display=swap);

:root {
  /* Cores primárias (vermelho da bola '7') */
  --color-primary: #043457;   /* Vermelho forte */
  --color-primary-2: #043457; /* Variação mais vibrante */

  /* Cores secundárias (laranja do texto 'Apostou') */
  --color-secondary: #FFB703; /* Laranja/amarelo vivo */
  --color-secondary-2: #ecbd50; /* Tom mais escuro de laranja */

  /* Cores terciárias (azul escuro do fundo e contornos) */
  --color-tertiary: #043457;   /* Azul profundo */
  --color-tertiary-2: #043457; /* Variação próxima */

  /* Neutras */
  --color-light: #fff;  /* Bege claro da tipografia */
  --color-dark: #333333;
  --color-black: #000000;
}


html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

:root {
    --swiper-theme-color: var(--color-light) !important
}

#projects .menu li a {
    position: relative;
    color: var(--color-dark)
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 450ms;
    padding: 0 80px;
    background: var(--color-primary);
}

.menu-wrapper .logo {
    height: 50px;
}
.menu-wrapper .logo img{
    margin-top: -30px;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, .98);
    transition: all 450ms;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .05)
}

nav.scrolled .menu-wrapper {
    margin: 15px auto;
    transition: all 450ms
}
nav.scrolled .menu-wrapper .logo img{
    margin-top: -10px;
    height: 70px;
    margin-left: 40px;
}
nav.scrolled svg path,
nav.scrolled svg rect {
    fill: var(--color-dark)
}

nav.scrolled li a {
    color: var(--color-dark)
}

.menu-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1750px;
    margin: 24px auto;
    transition: all 450ms
}

.menu {
    display: flex;
    align-items: center
}

.menu li {
    margin: 0 0 0 30px;
    list-style: none
}

.menu li a {
    font-style: normal;
    font-weight: 800;
    font-size: 13px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--color-light)
}

.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 80px
}

h1 {
    font-weight: 900;
    font-size: 54px;
    line-height: 110%;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--color-light)
}

span {
    font-style: normal
}

span:before {
    content: '';
    position: relative;
    width: 100%;
    height: 40px;
    background-color: red
}

h2 {
    padding: 0;
    margin: auto;
    font-weight: 900;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--color-primary);
    max-width: 70%;
    text-align: center;
}

@media only screen and (max-width:768px) {
    h2 {
        max-width: 100%;
    }
}

h3 {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -.02em;
    color: var(--color-dark)
}

h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -.02em
}

h5 {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--color-light)
}

.video-title {
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -.02em
}

.font-white {
    color: var(--color-light)
}

.font-black {
    color: var(--color-dark);
}

.medium {
    font-weight: 400
}

.semibold {
    font-weight: 600
}

.upper {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-light)
}

p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -.01em
}

ul {
    padding: 0
}

li {
    list-style: none
}

a {
    text-decoration: none;
    color: var(--color-tertiary);
}

.-white {
    color: var(--color-light)
}

.mt-32 {
    margin-top: 32px
}

.mt-24 {
    margin-top: 24px
}

.mt-40 {
    margin-top: 40px
}

.-mobile {
    display: none
}

.-hide-mobile {
    display: block
}

.-show {
    display: block !important
}

.button {
    padding: 12px 24px;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--color-light);
    display: inline-block;
    text-transform: uppercase;
    background: var(--color-primary);
    border: 1px solid var(--color-light);
}
.button:hover{
    background: var(--color-light);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.button.big {
    padding: 24px 32px;
    font-size: 16px
}
section .button {
    margin: 50px auto;
}
.button.black {
    background-color: var(--color-primary);
    display: flex;
    width: fit-content;
    gap: 10px;
    padding: 20px;
    margin: auto;
    border: none;
}
.button.black:hover {
    background-color: var(--color-tertiary-2);
    color: var(--color-light);
}
.call-to-action{
    display: flex;
    justify-self: center;
    gap: 20px;
}
#sobre .container {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 920px;
}

#sobre h2 {
    color: var(--color-primary);  
}
#sobre h2 strong{
    background: var(--color-primary);
    color: white;
    /* margin-top: 20px; */
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
}

#premios {
    padding-top: 160px;
    padding-bottom: 200px;
    background: linear-gradient(
        to bottom,
        var(--color-primary) 0%,
        var(--color-primary-2) 100%
    );
    border-radius: 0 0 400px 400px;
    text-align: center
}
#premios p{
    color: white;
}
#premios h2{
    color: white;
}
#premios strong{
    color: white;
}
#premios h4 {
    margin: 32px auto;
    max-width: 800px
}

#premios h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -.02em
}

#premios .three-columns {
    margin-top: 80px;
    margin-bottom: 120px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 24px 48px;
    grid-template-areas: ". . ." ". . ."
}

#premios .three-columns .columns {
    padding: 48px 40px 40px;
    border-radius: 30px;
    background: white;
    border-radius: 30px;
    border: 4px solid var(--color-tertiary);
}

#premios .three-columns .columns .upper {
    margin: 10px 0
}

#premios .three-columns .columns h5 {
    margin: 0 0 20px;
    font-size: 36px
}

#premios .three-columns .columns p {
    margin: 0 0 40px;
    color: var(--color-primary);
    min-height: 50px;
}

#premios .three-columns .columns img {
    width: 100%
}

#premios .three-columns .columns img.icon {
    width: 82px
}

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

#premios .align img {
    width: 460px;
    margin-bottom: -240px
}

#premios .align img.trophy {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

#premios .align img.shadow {
    transform: translateY(200px);
    animation-name: sizing;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating {
    from {
        transform: translate(0, 0)
    }

    65% {
        transform: translate(0, 40px)
    }

    to {
        transform: translate(0, 0)
    }
}

@keyframes sizing {
    from {
        transform: translateY(240px) scale(.98)
    }

    65% {
        transform: translateY(240px) scale(.7)
    }

    to {
        transform: translateY(240px) scale(.98)
    }
}

#premios h3 {
    margin: 32px 0
}

#como-doar {
    margin-top: 340px
}

#como-doar .two-columns {
    margin-top: 80px;
    margin-bottom: 120px;
    width: 100%;
    display: flex;
    gap: 20px;
}

#como-doar .two-columns .column {
    padding: 0;
    border-radius: 30px;
    border: 1px solid #E8E8E8;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
#como-doar .two-columns figure,
#como-doar .two-columns div{
    width: 45%;
}
#como-doar .two-columns .column h3,
#como-doar .two-columns .column p{
    text-align: left;
}
#como-doar .two-columns img {
    width: 100%
}

@media only screen and (max-width:920px) {
    #como-doar .two-columns .column {
        flex-wrap: wrap;
    }
    #como-doar .two-columns figure,
    #como-doar .two-columns div{
        width: 100%;
    }
    #como-doar .two-columns .column h3,
    #como-doar .two-columns .column p{
        text-align: center;
    }
} 
#como-doar .two-columns video,
#como-doar .two-columns img {
    background: linear-gradient(90deg, rgba(255, 149, 102, .2) 0%, var(--color-primary) 100%) padding-box, linear-gradient(90deg, rgba(255, 149, 102, .2) 0%, var(--color-primary) 100%) border-box;
    border-radius: 30px;
    border: 8px solid transparent;
    box-sizing: border-box
}

#como-doar .video-title {
    margin: 32px 0 8px;
    padding: 0 24px
}

#como-doar p {
    padding: 0;
    margin: 15px auto
}

#como-resgatar {
    margin-top: 140px
}

#como-resgatar .top-content h2{
    color: white;
    display: flex;
    text-align: left;
    font-size: 30px;
    margin: 30px 0;
}
#como-resgatar span{
    display: block;
    background: #7cfeff;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
}

#como-resgatar img{
    width: 100%;
    border-radius: 18px;
}
#como-resgatar h4 {
    max-width: 720px;
    text-align: center;
    margin: 40px auto
}

#como-resgatar .upper-column {
    font-weight: 900;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #C7D957
}

#como-resgatar .two-columns {
    margin-top: 100px;
    margin-bottom: 120px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 24px 64px;
    grid-template-areas: ". . ." ". . ."
}

#como-resgatar .two-columns .column {
    padding: 0;
    border-radius: 30px;
    border: 1px solid #E8E8E8;
    padding: 56px 48px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

#como-resgatar .two-columns .column h5 {
    margin: 20px 0;
    max-width: 380px;
}

#como-resgatar .two-columns .column video {
    margin-top: 20px
}

#como-resgatar .two-columns .column p {
    text-align: left;
    color: white;
}

#como-resgatar p a {
    color: var(--color-light);
    font-weight: 600;
    text-decoration: underline
}

#como-resgatar .two-columns .column:first-child {
    background: radial-gradient(209.01% 388.29% at 15.35% 14.34%, var(--color-primary) 9.66%, var(--color-primary-2) 100%);
}

#como-resgatar .two-columns .column:last-child {
    background: linear-gradient(96.41deg, var(--color-tertiary) 14.52%, var(--color-tertiary-2) 101.08%);
}

#como-resgatar .two-columns .column .top-content {
    position: relative
}

#como-resgatar .two-columns .column:first-child .top-content:after {
    content: '';
    position: absolute;
    right: 0;
    top: -90px;
    width: 124px;
    height: 124px;
    background-image: url(img/seguro.png);
    background-position: center;
    background-size: cover;
    display: none;
}

#como-resgatar .two-columns .column:last-child .top-content:after {
    content: '';
    position: absolute;
    right: 0;
    top: -90px;
    width: 124px;
    height: 124px;
    background-image: url(img/dinheiro.png);
    background-position: center;
    background-size: cover;
    display: none;
}

#como-resgatar .two-columns .column:last-child .upper-column {
    color: #FFD748
}

#como-resgatar .two-columns .column video {
    width: 100%;
}

footer {
        padding-top: 50px;
        margin-top: 50px;
        background: #efefef;
    }
footer .container {
    text-align: center
}

footer h3 {
    margin: 72px 0 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -.02em
}

footer h3 span {
    font-weight: 800
}

footer .signature {
    margin-top: 120px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 40px 0;
    color: var(--color-light);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    background: var(--color-primary);
    text-align: center;
    max-width: 100%;
}
footer .signature .copyright{
    padding: 10px;
}
footer .signature a {
    color: var(--color-light);
    font-weight: 600;
    font-size: 14px
}

@media only screen and (max-width:1280px) {
    nav {
        padding: 0 40px
    }

    .container {
        padding: 0 40px
    }

    #premios .three-columns {
        margin-bottom: 60px
    }

    #como-doar .two-columns {
        grid-template-areas: initial
    }

    #como-resgatar .two-columns {
        grid-template-areas: inherit;
        gap: 24px 40px
    }
}

@media only screen and (max-width:968px) {
    nav {
        padding: 0 20px
    }

    .menu-wrapper {
        margin: 24px auto
    }

    .menu li {
        margin: 0 0 0 16px
    }
    #premios .three-columns {
        gap: 24px 16px
    }

    #premios .three-columns .columns {
        padding: 48px 20px 40px
    }

    #premios {
        padding-top: 500px
    }

    #como-resgatar .two-columns {
        margin-top: 80px;
        gap: 24px
    }

    #como-resgatar .two-columns .column {
        padding: 56px 32px
    }

    #sobre .container {
        padding-top: 100px
    }
}

@media only screen and (max-width:992px) {
    h2 {
        font-size: 34px
    }

    h3 {
        font-size: 20px
    }

    h4 {
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: -.02em
    }

    h5 {
        font-size: 24px
    }

    .video-title {
        font-size: 18px
    }

    .upper {
        font-size: 14px
    }

    p {
        font-size: 16px
    }

    .container {
        padding: 0 16px
    }

    nav .menu {
        display: none
    }

    #sobre h4 {
        text-align: left
    }

    .video-wrapper {
        width: 100%;
        max-width: 1280px;
        padding: 10px;
        background: linear-gradient(90deg, #EDF5ED 0%, #FF6723 100%);
        border-radius: 24px;
        box-sizing: border-box
    }

    .video-wrapper img {
        border-radius: 10px
    }

    #premios {
        margin-top: -100px;
        padding-top: 180px
    }

    #premios h4 {
        margin: 20px 0;
        padding: 0 20px;
        font-size: 16px
    }

    #premios .three-columns {
        margin-top: 40px
    }

    #premios .align img {
        width: 320px;
        margin-bottom: -240px
    }

    #premios .three-columns {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 24px 48px;
        grid-template-areas: initial
    }

    #premios .three-columns .columns {
        padding: 32px 20px 40px
    }

    #premios h3 {
        font-size: 26px;
        line-height: 120%
    }

    #como-doar .two-columns {
        margin-top: 40px
    }

    #como-doar .two-columns {
        grid-template-columns: 1fr;
        grid-template-rows: initial;
        grid-template-areas: initial
    }

    #como-doar .video-title {
        padding: 0 16px
    }

    #como-doar p {
        padding: 0 24px 24px;
        max-width: 480px;
        margin: 15px auto
    }

    #como-resgatar {
        margin-top: 0
    }

    #como-resgatar h4 {
        font-size: 16px;
        margin: 20px auto 10px;
        text-align: left;
        padding-right: 40px
    }

    #como-resgatar .two-columns {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: initial
    }

    #como-resgatar .two-columns .column {
        padding: 48px 16px 24px
    }

    #como-resgatar .two-columns .column:last-child {
        margin-top: 20px
    }

    footer .logo-footer {
        width: 160px
    }

    footer h3 {
        margin: 72px 6px 40px;
        font-size: 24px;
        line-height: 120%
    }

    footer .signature {
        margin-top: 40px;
        flex-direction: column
    }

    footer .signature a {
        margin-top: 20px
    }
}
#formulario {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--color-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 200px;
    background: var(--color-light);
    border: 2px solid var(--color-primary);
    margin: 200px 20px 20px;
    place-self: center;
}

#formulario h1 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}

#formulario p.desc {
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
    color: var(--color-primary);
}

#formulario form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#formulario label {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--color-primary);
}

#formulario input,
#formulario select,
#formulario textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    font-size: 1rem;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
    height: 60px;
}

#formulario input:focus,
#formulario select:focus,
#formulario textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

#formulario .botoes {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#formulario button[type="submit"] {
    background: var(--color-primary);
    color: var(--color-light);
    height: 50px;
}

#formulario .checkbox {
    display: flex;
    align-items: center;
    gap: 20px;
}

#formulario .checkbox input {
    width: 18px;
    height: 18px;

}
.three-columns h5{
    color: var(--color-primary);
}
.three-columns .upper,
.three-columns .font-white{
    color: var(--color-black);
}

@media only screen and (max-width:600px) {
    .menu-wrapper .logo img{
        margin: auto;
        height: 50px;
    }
    nav.scrolled .logo img{
        margin: 0;
    }
    .call-to-action{
        display: flex;
        flex-wrap: wrap;
    }
    .button.black{
        width: 100%;
        justify-content: center;
    }
}
@media only screen and (max-width:400px) {
    .menu-wrapper .logo img{
        margin: auto;
        height: 50px;
    }
    nav.scrolled .logo img{
        margin: 0;
    }
    nav .button{
        padding: 12px 12px;
        font-size: 12px;
    }
}
.banner-slider{
    padding: 98px 10px 0;
    box-sizing: border-box;
    background: linear-gradient(
        to bottom,
        var(--color-primary) 0%,
        var(--color-primary) 50%, /* mantém a cor sólida até metade */
        #fff 100%                /* começa o degradê a partir daqui */
    );
}
.banner-slider .owl-item{
    border-radius: 20px;
    overflow: hidden;
}
.banner-slider .item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Estilo base dos dots */
.owl-dots {
    text-align: center;
    margin-top: 15px;
    position: absolute;
    bottom: -30px;
    justify-self: center;
    display: flex;
    gap: 10px;
}

.owl-dots .owl-dot {
    display: inline-block;
}

.owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Quando ativo vira retângulo */
.owl-dots .owl-dot.active span {
    width: 25px;
    height: 10px;
    border-radius: 5px;
    background: var(--color-primary);
    border: none;
}
