h2 {
    color: #001F3E;
    font-size: var(--h2-font-size);
}

h3 {
    line-height: calc(var(--h3-font-size) * 1.4);
}

h4 {
    font-size: var(--h5-font-size);
    color: var(--primary-color);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header .logo picture{
    justify-content: flex-start;
}

.hero .hero-text {
    align-items: flex-start;
    gap: var(--lg-gap);
}

.hero .flex {
    flex-direction: column;
    gap: var(--md-gap)
}

.whatsapp-btn {
    display: inline-flex;
    gap: var(--normal-gap);
    text-align: center;
    padding: 16px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 2px solid #DCDDDF;
    background: #4CAF50;
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: 400;
}

.whatsapp-btn:hover {
    color: var(--white-color);
    background: #3e8e41;
}

.whatsapp-btn .text {
    display: flex;
    flex-direction: column;
    line-height: calc( var(--xl-font-size) * 1.3);
}

.whatsapp-btn .text span:first-of-type {
    font-size: var(--body-font-size);
    font-weight: 600;
    line-height: calc( var(--xl-font-size) * 1.3);
}

.whatsapp-btn .text span:last-of-type {
    font-size: var(--small-font-size);
    line-height: calc(var(--small-font-size) * 1.3);
}

.clients-logo {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.clientes .info {
    margin-top: 32px;
}

.clientes .info .half{
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: var(--normal-gap);
}

#before-after {
    border-radius: 12px;
}

.container:has(.half) {
    display: flex;
    flex-wrap: no-wrap;
    gap: var(--md-gap);
    align-items: center;
}

.half {
    width: 50%;
}

@media (max-width: 743px) {
    .clientes {
        padding-bottom: 0;
    }

    .container:has(.half) {
        flex-direction: column;
    }

    .half {
        width: 100%;
    }

    .cta {
        margin-top: 50px;
    }

    .order {
        order: -1;
    }
}

.half ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: var(--normal-gap);
    flex-direction: column;
    margin: 0 0 16px;
}

.half ul li {
    display: flex;
    gap: var(--xs-gap);
    align-items: center;
    font-weight: 600;
}

.feautures-container {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feauture-card {
    padding: 22px;
    text-align: left;
    align-items: flex-start;
    border-radius: 12px;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .feautures-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 743px) {
    .feautures-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feauture-card h4 {
    color: #001F3E;
    font-weight: 600;
}

.feauture-card .title {
    display: flex;
    align-items: center;
    gap: var(--xs-gap);
    justify-content: flex-start;
}

.feauture-card .title img {
    max-width: 48px;
}

/* Reviews */
.client-review {
    text-align: center;
    align-items: center;
}

.faq-accordeon.active h4 {
    color: #001F3E;
}

.faq-accordeon.active h4 {
    color: #3029D9;
}

@media (max-width: 743px) {
    .client-review img{
        max-width: 60px;
        max-height: 60px;
    }
}

/* CTA */
.cta {
    /* //Image with background of color */
    background-image: url('../img/whatsapp-landing/bg.svg'), none;
background-color: #1B1F23;
background-position: 50%;
background-size: cover;
background-repeat: no-repeat;
    padding: 100px 0;
}

.cta .container {
    display: flex;
    flex-direction: column;
    gap: var(--lg-gap);
    align-items: center;
    text-align: center;
}

.cta .cta-text span {
    color: var(--secondary-color);
    font-size: var(--small-font-size);
    font-weight: 600;
}