html {
    
    scroll-behavior: smooth;
}
  
body {
    font-family: 'Nunito', sans-serif;
    padding: 0 15px;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.animate-text {
    font-family: 'Nunito', sans-serif;
    text-shadow: none;
}

header {
    background: #262460;
    color: #fff;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
    height: 25vh
}

.header-with-bg {
    background-image: url(images/cabecalho12.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin: 0;
    padding: 20px 0
}

@media (max-width:768px) {
    .header-with-bg {
        height: 20vh;
        font-size: 1.5rem;
        background-size: contain;
        padding: 8px
    }
}

@media (max-width:480px) {
    .header-with-bg {
        height: 20vh;
        font-size: 1rem;
        padding: 10px 0 10px;
        display: flex;
        justify-content: center;
        align-items: flex-start
    }
}

main {
    margin-top: 10px;
}

.logo-img {
    max-width: 200px;
    height: auto;
    display: inline-block;
    vertical-align: bottom
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border: none;
    background: #fff0
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 15px;
    flex-wrap: wrap
}

.button-container a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: initial;
    min-width: 120px;
    box-sizing: border-box;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 auto;
    max-width: 200px;
    transition: all 0.3s ease
}

@media (max-width:600px) {
    .button-container {
        gap: 15px
    }
}

a.button-primary {
    background-color: #262460
}

.button-container a:hover {
    background-color: #0bf72b;
    transform: scale(1.1);
    transition: all 0.3s ease
}

a.button-secondary {
    background-color: #25aa6a
}

.button-container a:hover {
    background-color: #0bf72b;
    transform: scale(1.1);
    transition: all 0.3s ease
}

.button-container a:active {
    transform: scale(.95);
    transition: all 0.3s ease
}

@media (max-width:600px) {
    .button-container {
        flex-direction: column;
        align-items: center
    }

    .button-container a {
        width: 40%
    }
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

@media (max-width: 850px) {
    .video-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .video-container {
        width: 100%;
        padding-top: 56.25%;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: 100%;
        padding-top: 56.25%;
    }
}


.animation-banner {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden
}

.animation-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: -1
}

.animation-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .3);
    z-index: 1
}

@media (max-width:768px) {
    .animation-banner {
        height: 50vh
    }

    .animation-banner video {
        object-fit: contain;
        width: auto;
        height: 100%;

    }
}

@media (max-width:480px) {
    .animation-banner {
        height: 30vh
    }

    .animation-banner video {
        object-fit: contain;
        width:100%;
        border-radius: 15px;
        height: 100%
    }
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 60px
}

.benefit-block {
    background-image: url(images/favicon.webp);
    background-size: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(255 255 255 / .8);
    background-blend-mode: lighten;
    border: 5px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 8px rgb(0 0 0 / .1);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.benefit-block {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px #262460
}

.benefit-block h3 {
    font-size: 1.2rem;
    color: #262460;
    text-shadow: none;
    margin-bottom: 10px
}

.benefit-block p {
    font-size: 1rem;
    color: #262460;
    line-height: 1.5
}

@media (max-width:768px) {
    .benefits-container {
        grid-template-columns: 1fr
    }
}

.beneficios2 {
    text-align: center;
    padding: 40px;
    background-image: url(images/info_background.webp);
    background-size: cover;
    background-position: center;
    color: #333;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 900px
}

.beneficios2 h2 {
    color: #262460;
    text-shadow: none;
    font-size: 1.8rem;
    margin-bottom: 30px
}

.beneficio2-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
    padding: 10px 0
}

.beneficio2-icon {
    width: 50px;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 0;
    margin-right: 20px;
    flex-shrink: 0
}

@media (max-width:768px) {
    .beneficio2-icon {
        width: 40px
    }
}

@media (max-width:480px) {
    .beneficio2-icon {
        width: 30px
    }
}

.beneficio2-item p {
    flex: 1;
    font-size: 1rem;
    color: #333;
    text-shadow: none
}

.beneficio2-item strong {
    color: #04c852;
    text-shadow: none
}

.beneficios2 hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 20px 0;
    text-shadow: none
}

.beneficios2 .disclaimer {
    font-size: .9rem;
    color: #6beb7e;
    margin-top: 20px;
    font-weight: 700
}

.beneficio2-buttons a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease
}

#prova {
    text-align: center
}

.prova-container {
    display: flex;
    justify-content: center;
    align-items: center
}

.prova-image {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .6)
}

#chamada {
    margin: 100px 0;
    text-align: center
}

.chamada-container {
    display: flex;
    justify-content: center;
    align-items: center
}

.chamada-image {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .6)
}

.container {
    background-image: url(images/banner-cta.webp);
    background-size: cover;
    background-position: center;
    background-color: rgb(38 36 96 / .6);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgb(0 0 0 / .1);
    margin: 20px auto;
    max-width: 1200px
}

.left {
    flex: 1;
    background-color: rgb(38 36 96 / .6);
    min-width: 300px;
    text-align: center;
    padding: 20px;
    border-color: #fff;
    border-radius: 15px;
    margin: 15px
}

.left img {
    width: 190px;
    margin-top: 10px
}

.left h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff
}

.left p {
    font-size: 1rem;
    margin: 5px 0;
    color: #fff
}

.left .oldprice {
    font-size: 2rem;
    color: #f70000;
    text-decoration: line-through;
    position: relative
}

.left .price {
    font-size: 2rem;
    font-weight: 700;
    color: #25aa6a
}

.left .buy-now {
    display: inline-block;
    background-color: #25aa6a;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease
}

.left .buy-now:hover {
    background-color: #218838;
    transform: scale(1.05)
}

.right {
    flex: 2;
    min-width: 300px;
    padding: 20px;
    margin: 10px;
    position: relative
}

.right h1 {
    font-size: 1.5rem;
    background-color: #fff;
    color: #262460;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px
}

.right p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 15px
}

.right ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.right ul li.button-style {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1rem;
    color: #fff;
    background-color: #25aa6a;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer
}

.right ul li.button-style:hover {
    background-color: #218838;
    transform: scale(1.05)
}

.right ul li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fff
}

.right ul li span {
    font-weight: 700;
    color: #fff
}

.right img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2)
}

.right .background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    z-index: -1;
    object-fit: cover;
    border-radius: 8px
}

main section {
    margin: 40px 20px
}

h1 {
    font-family: 'Nunito', sans-serif;
    text-shadow: none;
    font-weight: 900;
    color: #262460;
    margin-bottom: 20px
}

h2 {
    font-family: 'Nunito', sans-serif;
    text-shadow: none;
    font-weight: 300;
    color: #262460;
    margin-bottom: 20px;
}

p,
ul {
    font-size: 18px;
    text-shadow: none
}

#legal-notice {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 25px;
    border-top: 1px solid #ddd;
    font-size: .1rem;
    color: #555;
    text-align: center
}

.legal-text {
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    word-wrap: break-word
}

footer {
    background-color: #262460;
    color: #ecf0f1;
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px
}

.footer-left {
    display: flex;
    gap: 15px
}

.footer-left img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s
}

.footer-left img:hover {
    transform: scale(1.2)
}

.footer-center {
    text-align: center;
    flex: 1
}

.footer-center p {
    margin: 0;
    font-size: 10px
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-right p {
    font-size: 10px
}

.footer-right img {
    width: 22px
}

@media (max-width:600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        font-size: 10px
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        font-size: 10px
    }
}

@media (max-width:600px) {

    h1,
    h2,
    h3,
    p {
        font-size: 100%;
        margin-left: 25px;
        margin-right: 25px;
    }
}

@media screen and (max-width:768px) {
    .cta {
        font-size: 16px;
        padding: 10px 20px;
    }

    p,
    ul {
        font-size: 16px
    }
}