body,
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
    font-family: var(--fonts);
}



header {
    background-color: #f5f4f9;
    display: flex;
    justify-content: center;
    height: 100px;
    box-shadow: 0 -8px 30px 0px rgba(0, 0, 0, 0.5);
}

header .header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 var(--side-padding);
}

header .header-container .logo {
    height: auto;
}

header .header-container .burger-menu {
    height: 25px;
    width: 30px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    z-index: 999;
}

header .header-container .burger-menu .lines {
    border-radius: 12px;
    width: 100%;
    height: 3px;
    background-color: var(--black-foreground);
    transition: ease-in-out .2s;
}

header .header-container.show .burger-menu {
    position: fixed;
    right: 8%;
}

header .header-container.show .burger-menu .lines:first-child {
    transform: translateY(12px) rotate(50deg);
}

header .header-container.show .burger-menu .lines:nth-child(2) {
    transform: translateX(-40px);
    opacity: 0;
}

header .header-container.show .burger-menu .lines:last-child {
    transform: translateY(-11px) rotate(-50deg);
}

header .header-container.show nav {
    position: fixed;
    display: flex;
    height: 100%;
    z-index: 998;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: aliceblue;
}

header .header-container.show nav ul {
    width: 100%;
    padding: 0;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .header-container.show nav ul li {
    padding: 22px 0;
}

header .header-container.show nav ul li a {
    font-size: 32px;
    font-weight: bold;
}

header .header-container nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

header .header-container nav ul li {
    padding: 0 16px;
}

header .header-container nav ul li .btn {
    margin: 0;
    padding: 14px 26px;
}

header .header-container nav ul li a {
    text-decoration: none;
    color: var(--black-foreground);
}

main {
    width: 100%;
    flex-direction: column;
    display: flex;
}

#cta {
    display: flex;
    justify-content: center;
    height:  108vh;
}

#cta::before {
    content: "";
    background-image: url("../images/doodle-dog.webp");
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.05;
}

#cta .cta-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: var(--max-width);
    justify-content: center;
    align-items: center;
    padding: var(--side-padding);
    gap: 32px;
}

#cta .cta-container .text-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#cta .cta-container .text-container img {
    padding-bottom: 12px;
}

#cta .cta-container .text-container h1 {
    color: var(--detail-foreground);
    font-size: 36px;
    font-family: 'encoded-sans';
    font-weight: 900;
    text-transform: uppercase;
}

#cta .cta-container .text-container p {
    padding-top: 18px;
    font-size: 19px;
    color: var(--black-foreground);
}

#cta .cta-container .text-container .cta-title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

#cta .cta-container .text-container .cta-title>h2 {
    color: var(--detail-foreground);
    font-size: 30px;
    text-shadow: 0px 2px 1px #000000, 0 -1px 1px #000000, -1px 0px 1px #000000, 1px 0px 1px #000000;
    /*margin-right: 25px;*/
}

#cta .cta-container .text-container p strong {
    font-size: 22px;
    font-weight: 900;
    color: #e50092;
}

#cta .cta-container .text-container .obs {
    font-weight: 700;
    font-size: 14px;
}

#cta .cta-container .text-container .obs:last-child {
    padding: 8px 0;
    font-size: 14px;
}

#cta .cta-container .text-container .obs i {
    color: black;
    opacity: 100%;
    font-weight: 900;
    font-size: 22px;
}

#cta .cta-container .image {
    width: 50%;
    height: 100%;
}

#cta .cta-container .image img {
    width: 100%;
    border-radius: 22px;
    height: 100%;
    object-fit: cover;
}

#regulation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgrey;
}

#regulation .regulation-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 32px;
    margin: 64px;
    max-width: var(--max-width);
}

#regulation .regulation-container h2 {
    color: var(--detail-foreground);
}

#regulation .regulation-container p {
    padding-top: 12px;
    line-height: 1.5;
    font-size: 14px;
}

#regulation .regulation-container p.subtopic {
    padding-left: 64px;
}

#benefits {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #333;
}

#benefits .benefits-container {
    display: flex;
    position:relative;
    max-width: var(--max-width);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

#benefits .benefits-container h2 {
    color: white;
    text-transform: uppercase;
    z-index: 999;
}

#benefits .benefits-container h2 span {
    background-color: #333;
    width: 200px;
    display: block;
    display: flex;
    justify-content: center;
}

#benefits .benefits-container h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    z-index: -2;
    top: 8%;
    left: 0;
    background-color: white;
}

#benefits .benefits-container .benefits-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding-top: 56px;
}

#benefits .benefits-container .benefits-list .benefits-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 300px;
}

#benefits .benefits-container .benefits-list .benefits-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: #EBEBEB;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

#benefits .benefits-container .benefits-list .benefits-card h3 {
    padding: 22px 0;
    color: white;
    font-weight: 700;
}

#benefits .benefits-container .benefits-list .benefits-card p {
    line-height: 1.5;
    color: white;
}

#boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

#boxes .boxes-container {
    display: flex;
    flex-direction: column;
    max-width: var(--max-width);
    justify-content: center;
    align-items: center;
    gap: 32px;
}

#boxes .boxes-container>h2 {
    text-transform: uppercase;
    padding: 22px 0;
    font-size: 44px;
    color: var(--detail-foreground);
}

#boxes .boxes-container .obs {
    color: #00000060;
    font-size: 14px;
    text-align: center;
    padding: 32px 0;
}

#boxes .boxes-container .box-list {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

#boxes .boxes-container .box-list .box-card {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 300px;
    height: 400px;
    border: 1px solid #00000020;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.1);
}

#boxes .boxes-container .box-list .box-card i {
    font-size: 50px;
    color: var(--detail-foreground);
}

#boxes .boxes-container .box-list .box-card h2 {
    font-size: 32px;
    line-height: .5;
}

#boxes .boxes-container .box-list .box-card p {
    text-align: center;
    line-height: 1.5;
}

#boxes .boxes-container .box-list .box-card .highlighted {
    font-weight: 900;
    font-size: 16px;
}

#boxes .boxes-container .box-list .box-card a {
    align-self: flex-end;
}

#boxes .boxes-container .box-list .box-card .btn {
    align-self: flex-end;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #f5f4f9;
}

footer .footer-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
}

footer .footer-container p {
    text-align: center;
    display: flex;
    place-items: center;
}

.button-whats {
    position: fixed;
    width: 4%;
    left: auto;
    right: 1%;
    margin-bottom: 12px;
    z-index: 999999999;
    text-align: center;
    bottom: 7%;
}

.button-whats a img {
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgb(0 168 34 / 37%);
    animation: pulse 1.5s infinite;
    width: 100%;
}

.pulse-button:hover {
    animation: none;
}

div#bricks-component-UiMqS4-3AWA2MtH7TFz_aQ-wrapper {
    display: none!important;
}

@keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}

@media screen and (min-width:300px) and (max-width: 767px) {
    .button-whats {
        width: 11%;
    }
}

@media screen and (min-width:768px) and (max-width: 991px) {
    .button-whats {
        width: 11%;
    }
}

@media screen and (max-width: 992px) {
    header .header-container .burger-menu {
        display: flex;
    }
    header .header-container nav {
        display: none;
    }
    #cta {
        height: auto !important;
    }
    #cta .cta-container {
        flex-direction: column-reverse;
    }
    #cta .cta-container .text-container {
        width: 100%;
    }
    #cta .cta-container .image {
        width: 100%;
        height: 100%;
    }
    #cta .cta-container .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    footer .footer-container {
        flex-direction: column;
    }
}