@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --cl-g200: #E7F4EF;
    --cl-g300: #F8FCFA;
    --cl-g800: #2E614E;
    --cl-g900: #265040;
    --cl-n0: #fff;
    --cl-o200: #FFE8D6;
    --cl-o400: #F6C198;
    --cl-o600: #FD622C;
    --cl-o700: #D2752D;
    --cl-o800: #8D2601;
    --cl-y200: #F6EED5;

    --tp-xxs: 14px;
    --tp-xs: 18px;
    --tp-s: 22px;
    --tp-m: 26px;
    --tp-l: 30px;
    --tp-xl: 38px;
    --tp-xxl: 48px;

    --tp-regular: 500;
    --tp-medium: 600;
    --tp-bold: 700;
}

/* normalise */
html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--tp-regular);
    font-size: var(--tp-xxs);
    scroll-behavior: smooth !important;
}

section {
    position: relative;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 100%;
}

h1 {
    font-size: var(--tp-xxl);
    font-weight: var(--tp-bold);
}

h2 {
    font-size: var(--tp-xl);
    font-weight: var(--tp-medium);
}

h3,
h4 {
    font-size: var(--tp-xs);
}


p {
    font-size: var(--tp-xxs);
    padding: 0;
    margin: 0;
}

.relative {
    position: relative;
}


.w100 {
    width: 100% !important;
}

.hfit {
    height: fit-content;
}

.pt20 {
    padding-top: 20px;
}

.pt40 {
    padding-top: 40px;
}
.pb60{
    padding-bottom: 60px;
}

.pad6 {
    padding: 6px;
    box-sizing: border-box;
}

.pad10 {
    padding: 10px;
    box-sizing: border-box;
}

.pad20 {
    padding: 20px;
    box-sizing: border-box;
}

.pad40 {
    padding: 40px;
    box-sizing: border-box;
}

.space {
    display: block;
    height: 8px;
}

.tp-xxs {
    font-size: var(--tp-xxs);
}

.tp-xs {
    font-size: var(--tp-xs);
}

.tp-s {
    font-size: var(--tp-s);
}

.tp-l {
    font-size: var(--tp-l);
}

.medium {
    font-weight: var(--tp-medium);
}

.bold {
    font-weight: var(--tp-bold);
}

.tp-center {
    text-align: center;
}

.bg-dark-green {
    background-color: var(--cl-g800);
}

.bg-green {
    background-color: var(--cl-g200);
}

.bg-orange-asend {
    background-color: var(--cl-o600);
}

.bg-orange {
    background-color: var(--cl-o200);
}

.bg-orange-overlay {
    background-color: var(--cl-o400);
}

.bg-yellow {
    background-color: var(--cl-y200);
}

.bg-opacity-b60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-white {
    background-color: var(--cl-n0);
}

.tp-green {
    color: var(--cl-g900);
}

.tp-orange {
    color: var(--cl-o800);
}

.tp-white-yellow {
    color: var(--cl-y200);
}

.tp-white {
    color: var(--cl-n0);
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

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

.flex-end {
    justify-content: flex-end;
}

.vertical-center {
    align-items: center;
}

.horizontal-between {
    justify-content: space-between;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.texture {
    position: relative;
}

.texture>* {
    z-index: +2;
}

.texture::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../assets/ruido.webp');
    background-repeat: repeat;
    opacity: 0.06;
}

.btn-xs {
    padding: 8px 10px;
    border-radius: 8px;
    height: 54px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tp-xxs);
    width: fit-content;
}

.btn-s {
    padding: 8px 20px;
    border-radius: 8px;
    height: 54px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tp-xs);
    width: fit-content;
}

.btn-m {
    padding: 8px 26px;
    border-radius: 8px;
    height: 64px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tp-s);
    width: fit-content;
}

.btn-white-green {
    background-color: var(--cl-n0);
    color: var(--cl-g800);
    font-weight: var(--tp-medium);
    transition: 0.3s;
}

.btn-white-green:hover,
.btn-terciary:hover {
    box-shadow: 0px 0px 0 6px rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.btn-orange-gradient {
    background: linear-gradient(90deg, rgba(253, 98, 44, 1) 0%, rgba(192, 51, 2, 1) 100%);
    color: var(--cl-n0);
    transition: 0.3s;
}

.btn-orange {
    background-color: var(--cl-o600);
    color: var(--cl-n0);
    transition: 0.3s;
}

.btn-orange:hover,
.btn-orange-gradient:hover {
    box-shadow: 0px 0px 0 6px rgba(246, 106, 0, 0.5);
    transition: 0.3s;
}

.btn-green {
    background-color: var(--cl-g900);
    color: var(--cl-n0);
    font-weight: var(--tp-medium);
    transition: 0.3s;
    border: none;
    outline: none;
}

.btn-green:hover {
    box-shadow: 0px 0px 0 6px rgba(46, 97, 78, 0.5);
    transition: 0.3s;

}


.btn-terciary {
    background-color: var(--cl-n0);
    color: var(--cl-g800);
    text-align: right;
    gap: 8px;
    font-weight: var(--tp-bold);

}

.btn-terciary svg {
    padding: 12px;
    background-color: var(--cl-g800);
    border-radius: 6px;
}


/* navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cl-g800);
    z-index: 999;
}

.menu__mobile {
    display: none;
}

nav>div {
    width: 100%;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

nav img {
    height: 80px;
    border-radius: 20px 0 20px 0;
}

nav ul {
    gap: 20px;
}

nav li a {
    display: flex;
    color: var(--cl-n0);
    font-size: var(--tp-xs);
    padding: 4px 8px;
    position: relative;
    overflow: hidden;
}

nav li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--cl-n0);
    bottom: 0;
    left: -110%;
    transition: 0.3s;
}

nav li a:hover::after {
    left: 0%;
    transition: 0.3s;
}

/* menu mobile */
.modal__menu {
    background-color: var(--cl-g900);
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    z-index: 10000;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.close__modal {
    position: absolute;
    top: 20px;
    font-size: var(--tp-xl);
    color: var(--cl-o400);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.modal__menu ul li a {
    color: var(--cl-n0);
    font-size: var(--tp-m);
}

.close__modal:hover,
.modal__menu ul li a:hover {
    transform: scale(1.05);
    color: var(--cl-n0);
    cursor: pointer;
}

.view__menu {
    left: 0 !important;
}



@keyframes sticker {

    0%,
    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
    }

}

/* hero */
.hero {
    margin-top: 100px;
    height: calc(100vh - 220px);
    background-image: url('../assets/hero.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero header {
    max-width: 600px;
    padding-left: 20px;
}

.hero h1,
.hero h2 {
    color: var(--cl-o600);
}

.hero h2 {
    font-size: var(--tp-m);
    font-weight: var(--tp-bold);
}


/* logos das empresas */
@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    white-space: nowrap;
    height: 120px;
    position: relative;
    background-color: var(--cl-g800);
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(90deg, rgba(46, 97, 78, 1) 0%, rgba(46, 97, 78, 1) 10%, rgba(46, 97, 78, 0) 100%);
}

.logos:after {
    right: 0;
    background: linear-gradient(90deg, rgba(46, 97, 78, 0) 0%, rgba(46, 97, 78, 1) 90%, rgba(46, 97, 78, 1) 100%);
}

.logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
    -webkit-animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    padding-top: 10px;
    height: 100px;
}

.container-images{
    position: relative;
    padding: 0 !important;
    width: fit-content !important;
    max-width: initial !important;
}

/* stickers */

.sticker {
    position: absolute;
    width: 140px !important;
    animation: 2s sticker ease-in infinite;
    -webkit-animation: 2s sticker ease-in infinite;
}

.what-cipa .sticker {
    top: 5%;
    right: 10px;
}

.benefits .sticker {
    left: 10px;
    top: 5%;
}

.steps .sticker {
    top: 5%;
    right: 10px;
}

.forms .sticker {
    top: 5%;
    left: 10px;
    z-index: +1;
}

.compliance .sticker {
    right: 10px;
    top: 5%;
}

/* section 1 */
.what-cipa {
    position: relative;
}

.what-cipa>div {
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}


.what-cipa> div img {
    width: 620px;
}

.benefits img {
    width: 510px;
}

.benefits>div {
    max-width: 600px;
}

.list-benefits>div {
    max-width: 260px;
}

.benefits .container-icon {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cl-o600);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.tag h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tag h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    background-color: var(--cl-n0);
}

.grid-2 {
    display: grid;
    grid-template-columns: 60% 40%;
}


.grid-2 img {
    width: 100%;
}


.container-steps{
    max-width: 740px !important;
}

.card-steps {
    max-width: 320px;
    padding: 12px;
    box-sizing: border-box;
    gap: 6px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.card-steps:nth-child(1),
.card-steps:nth-child(2) {
    height: 150px;
}

.card-steps:nth-child(3),
.card-steps:nth-child(4) {
    height: 165px;
}

.step-number {
    width: 32px;
    height: 32px;
    font-weight: var(--tp-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cl-o200);
    color: var(--cl-o800);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.functions {
    padding: 40px;
    box-sizing: border-box;
}

.functions img {
    width: 600px;
    max-width: 100%;
}

.list-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.list-points li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-points li svg {
    width: 14px;
    min-width: 14px;
}

form {
    max-width: 600px;
}


input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
    width: 100%;
    height: 54px;
    padding: 8px 14px;
    font-size: var(--tp-xs);
    font-weight: var(--tp-medium);
    color: var(--cl-g800);
    box-sizing: border-box;
    background-color: transparent;
    border: 2px solid var(--cl-g900);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

input::placeholder {
    font-size: var(--tp-xxs);
    color: var(--cl-g800);
    font-weight: var(--tp-regular);
}

input[type="submit"] {
    font-family: 'Urbanist';
    font-size: var(--tp-xs);
    width: 100% !important;
}

#result-budget {
    display: none;
    padding: 20px;
    box-sizing: border-box;
}

.container-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    width: 100%;
}

.container-cards .card>div {
    padding: 2px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--cl-o200);
}

.budget-value {
    border: none;
    background-color: var(--cl-o200);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    padding: 20px;
    box-sizing: border-box;
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    top: 0;
    left: 0;
}

.loading-animation {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--cl-o600);
    border-bottom-color: var(--cl-o600);
    position: absolute;
    animation: animationLogo 1s cubic-bezier(0.36, 0, 0.66, -0.56) infinite;
}

@keyframes animationLogo {
    100% {
        transform: rotate(360deg);
    }
}

.discount {
    opacity: 0.75;
}

.discount::after {
    content: '';
    position: relative;
    bottom: 8px;
    left: -4px;
    display: flex;
    width: calc(100% + 8px);
    height: 1px;
    background-color: var(--cl-o800);
}

.compliance img {
    max-width: 500px;
    object-fit: cover;
}

.compliance>div {
    max-width: 900px;
}

.border-white {
    border: 1px solid var(--cl-n0);
}

#canal-denuncia {
    background-image: url("../assets/section7.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
}

#canal-denuncia>div {
    max-width: 640px;
}

.enterprise>div {
    max-width: calc(90vw - 468px);
}

.enterprise>img {
    max-width: 468px;
}

/* faq */

#faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    align-items: center;
}

#faq div {
    width: 100%;
}


.group-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.header-faq {
    max-width: 900px;
}

.togglefaq {
    position: relative;
    width: 100%;
    padding: 4px 12px;
    padding-right: 50px !important;
    border-bottom: 1px solid var(--cl-g900);
    max-width: 900px;
    transition: 0.3s;
    text-align: left;
    font-size: var(--tp-xs);
    font-weight: var(--tp-medium);
    transition: 0.3s;
    text-decoration: none;
    gap: 8px;
    box-sizing: border-box;
}

.togglefaq i {
    position: absolute;
    right: 10px;
    bottom: 4px;
}

.click {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faqanswer {
    display: none;
    width: 100%;
    max-width: 800px !important;
    background: var(--cl-g300);
    padding: 12px 20px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.faqanswer p {
    color: var(--cl-g900);
    max-width: 800px;
}

.faqanswer a {
    color: var(--cl-g800);
    font-weight: var(--tp-bold);
}


.icon-plus {
    display: flex;
    width: 26px;
    height: 26px;
    min-width: 26px;
    background-image: url("../assets/arrow-up.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.icon-minus {
    display: flex;
    width: 26px;
    height: 26px;
    min-width: 26px;
    background-image: url("../assets/arrow-down.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.grid-4 {
    display: grid;
    grid-template-columns: 190px 260px 1fr 370px;
    width: 100%;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    max-width: 160px;
    border-radius: 20px 0 20px 0;
    -webkit-border-radius: 20px 0 20px 0;
    -moz-border-radius: 20px 0 20px 0;
    -ms-border-radius: 20px 0 20px 0;
    -o-border-radius: 20px 0 20px 0;
}

footer iframe {
    width: 100%;
    height: 290px;
    border-radius: 20px 0 20px 0;
    -webkit-border-radius: 20px 0 20px 0;
    -moz-border-radius: 20px 0 20px 0;
    -ms-border-radius: 20px 0 20px 0;
    -o-border-radius: 20px 0 20px 0;
}

#allrights {
    position: absolute;
    left: 0;
    margin-left: 10px;
}

.cipa-evidence {
    font-weight: 900;
}

@media screen and (min-width:1599px) {
    :root{
        --tp-xxs: 16px;
    --tp-xs: 20px;
    --tp-s: 24px;
    --tp-m: 28px;
    --tp-l: 32px;
    --tp-xl: 42px;
    --tp-xxl: 54px;
    }
    .hero header{
        padding-left: 100px;
    }

    .what-cipa> div img{
        width: 740px;
    }

    .benefits img{
        width: 620px;
    }

    .steps .image-section{
        width: initial;
        max-width: 100%;
    }

    .container-steps{
        max-width: 900px !important;
    }

    .card-steps{
        max-width: 400px;
    }

    .card-steps:nth-child(1), .card-steps:nth-child(2){
        height: 165px;
    }

    .card-steps:nth-child(5), .card-steps:nth-child(6){
        height: 150px;
    }

    .functions img{
        width: 740px;
    }

    .compliance img{
        max-width: 900px;
    }

    .compliance>div{
        max-width: 920px;
    }

    .list-points li{
        font-size: var(--tp-xs);
    }

    .enterprise>div{
        max-width: calc(90vw - 900px);
    }
    .enterprise>img{
        max-width: 900px;
    }
}

@media screen and (max-width:1127px) {
    :root {
        --tp-xxs: 14px;
        --tp-xs: 16px;
        --tp-s: 20px;
        --tp-m: 24px;
        --tp-l: 28px;
        --tp-xl: 33px;
        --tp-xxl: 40px;
    }

    nav .btn-terciary {
        display: none;
    }

    nav img {
        height: 60px;
    }

    .hero {
        height: calc(100vh - 200px);
        margin-top: 80px
    }

    .benefits {
        flex-direction: column !important;
        padding-bottom: 40px;

    }

    .benefits>div {
        width: 100%;
        max-width: 740px;
        justify-content: center !important;
        align-items: center;

    }

    .benefits .list-benefits {
        justify-content: center !important;
    }

    .benefits h2 {
        text-align: center;
    }

    .grid-2,
    .container-cards {
        grid-template-columns: 1fr;
    }

    .steps .container-images{
        order: 0;
        margin: 0 auto;
    }

    .steps .d-flex{
        order: 1;
    }

    .card-steps {
        height: 165px;
    }

    .functions img {
        width: 450px;
        max-width: 100%;
    }

    #orcamento img {
        order: 0;
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
    }

    #orcamento>div {
        order: 1;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media screen and (max-width:980px) {
    .hero header {
        max-width: 330px;
    }

    .what-cipa {
        flex-direction: column;
    }

    .what-cipa .container-images {
        order: 0;
    }

    .what-cipa .d-flex{
        order: 1;
    }

    .functions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
    }

    .functions .sticker {
        left: auto;
        right: 3%;
    }

    .compliance {
        flex-direction: column;
        align-items: center;
    }

    .enterprise {
        flex-direction: column;
        gap: 14px !important;
        padding-bottom: 40px;
    }

    .enterprise>div {
        max-width: 900px;
        width: 90%;
        order: 1;
    }

    .enterprise img {
        order: 0;
    }
}

@media screen and (max-width:820px) {

    nav ul,
    nav a {
        display: none !important;
    }

    .menu__mobile {
        display: flex;
        width: 40px;
        height: 40px;
        background-image: url("../assets/menu.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        cursor: pointer;
    }
}

@media screen and (max-width:568px) {

    .sticker{
        width: 100px !important;
    }
    h1 {
        font-size: 36px;
    }

    .hero{
        align-items: flex-start !important;
        padding-top: 20px;
        box-sizing: border-box;
        background-image: url("../assets/banner-mobile.webp");
        background-position: center;
    }

    .hero header {
        max-width: 90%;
        
    }

    .hero .btn-m {
        padding: 6px 20px;
        font-size: 16px;
    }

    .hero {
        background-position: 47%;
    }

    .hero h1,
    .hero h2 {
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
    }

    .logos::after,
    .logos::before {
        background: transparent;
    }

    .logo_items:last-child {
        display: none !important;
    }

    .logo_items {
        animation-duration: 6s;
    }

    .what-cipa .sticker {
        top: 50px;
    }


    .functions .sticker {
        left: auto;
        right: 3%;
        bottom: -80px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .tag h2 {
        text-align: center;
        line-height: 130%;
    }

    #canal-denuncia {
        padding: 20px !important;
        background-position: left;
    }

    img {
        max-width: 100% !important;
    }

    footer img {
        width: 140px !important;
    }

    #allrights {
        position: initial !important;
        margin-left: 0;
    }
  .social-icons {
        flex-direction: column !important;
        gap: 20px !important;
    }
}


.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse svg {
    width: 24px;
    height: 24px;
    animation: scale-icon 2s linear infinite;
    -webkit-animation: scale-icon 2s linear infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes scale-icon {

    0%,
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
}
    50%{
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
}
}