* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

:root {
    --primary-bg: #002B5C;
    --text-color: #FFFFFF;
    --accent-color: #74DDAE;
    --accent-color-dark: #58AE76;
    --purple-light: rgba(128, 90, 213, 0.1);
    --purple: #8543D3;
    --blue: #1E40AF;
    --light-blue: #E5EDF8;
    --royal-blue: #2B4CC7;
}

.ctaFixed {
    position: fixed;
    right: 10px;
    bottom: 10px;
    border: solid 1px #004BC2;
    border-radius: 50px;
    padding: 5px 8px 5px 3px;
    display: flex;
    place-items: center;
    background-color: #E5EDF8;
    color: #00224C;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 500;
}

.ctaFixed img {
    width: 50px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none
}

p,
button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

li {
    font-family: 'Roboto', sans-serif;
    list-style: none;
    cursor: default;
}

button {
    cursor: pointer;
}

.brDesktop {
    display: block;
}

.bttnPrincipal {
    padding: 15px 50px;
    background-color: #FC7E00;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px
}

.bttnPrincipal:hover {
    background-color: #E26B04
}

.bttnSecundario {
    padding: 15px 32px;
    background-color: transparent;
    color: #000;
    border: solid 1px #004BC2;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500
}

.bttnSecundario:hover {
    background-color: #EFF3FF
}


/****************************/
.hero {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--light-blue);
}

.headerContainer {
    width: 100%;
    padding: 100px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.textHero {
    margin-top: -100px;
}

.hero .webinarForm {
    margin: 0 auto;
    background-color:rgb(0, 46, 113);
    padding: 30px;
}

.small-title-head {
    color:rgb(0, 46, 113);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 8px;
}

.hero h2 {
    color: #002E71;
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 1rem;
    line-height: 110%;
    margin: 20px 0;
}

.hero .under-title {
    padding-right: 110px;
    font-family: "Roboto";
    color: #fff;
    font-size: 16px;
    font-weight: 400
}

.hero #crmDemo1 {
    background: #1D4ABA;
    font-family: "Roboto", sans-serif;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    font-weight: 400;
    line-height: normal;
}

.hero button:hover {
    background: #E26B04
}

.hero .desktop-img {
    display: block;
    width: 100%;
}

/************/

.features-section {
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
}

.features-section-container {
    padding: 100px 90px;
}

.hero-content {
    text-align: center;
    margin: 0 auto 64px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    h2 {
        font-size: 2.25rem;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #B794F4;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .subtitle {
        font-size: 1.5rem;
    }
}

.description {
    font-size: 1.125rem;
    color: white;
    font-family: 'Montserrat';
    font-weight: 300;
    margin-top: 20px;
}

.highlight {
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: .5fr 1fr;
    align-items: center;
    gap: 48px;
}

.image-container {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .image-container {
        order: 1;
    }
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

.decorative-element {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    filter: blur(16px);
}

.top-left {
    top: 25%;
    left: -32px;
    background-color: rgba(168, 85, 247, 0.1);
}

.bottom-right {
    bottom: 25%;
    right: -32px;
    background-color: rgba(59, 130, 246, 0.1);
}

.features-list {
    display: grid;
    gap: 20px;
    row-gap: 30px;
    order: 1;
}

@media (min-width: 640px) {
    .features-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-list {
        grid-template-columns: 1fr 1fr 1fr;
        order: 2;
    }
}

.feature-card {
    position: relative;
}

.icon-container {
    display: inline-block;
    padding: 8px;
    background-color: var(--purple-light);
    border-radius: 8px;
    margin-bottom: 16px;
}

.icon-container svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 10px 0;
    min-height: 50px;
    color: var(--accent-color);
}

.feature-card p {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
}

/*********************/
.containerClients {
    background-color: #e7eef9;
}

.containerClientsBox {
    padding: 90px;
}

.containerClients h2 {
    font-weight: 500;
    font-size: 39px;
    line-height: 45px;
    text-align: center;
    color: var(--accent-color-dark);
    padding-bottom: 50px;
}

.containerClientsP {
    margin-top: 20px;
    line-height: 1.3;
    text-align: center;
}

.containerClientsArticles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 50px;
    margin-top: 10px;
    max-width: 80%;
    margin: 0 auto;
}

.containerClientsArticles h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
    color: var(--purple);
    margin-bottom: 20px;
}

.containerClientsArticles p {
    line-height: 22px;
    color: #002649;
}

/***************/

.howTo {
    background: rgb(0, 46, 113);
    background: linear-gradient(0deg, rgba(0, 46, 113, 1) 50%, #e7eef9 50%);
    padding: 40px 0;
}

.howToCard {
    border-radius: 20px;
    background: #5980C9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 75px;
    gap: 50px;
    place-content: center;
    place-items: center;
}

.howToText {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 20px;
}

.howToText h2 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    /* 114.286% */
}

.howToText p {
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

/*****************/

.universalContainer {
    display: flex;
    flex-direction: column;
    padding: 60px 90px 130px;
    gap: 50px;
    text-align: center;
    background-color: #002E71;
    color: white;
}

.universalContainer h2,
.universalContainer iframe {
    font-weight: 600;
    margin: 0 auto;
    border-radius: 10px;
}

/*******************/
.whatsapp-business-section {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-blue);
}

.wspContainer {
    padding: 50px 90px;
}

.whatsapp-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.2;
}

.whatsapp-main-title .whatsapp-purple {
    color: var(--purple);
    display: block;
}

.whatsapp-main-title .whatsapp-blue {
    color: var(--primary-bg)
}

.whatsapp-features-grid {
    display: grid;
    margin-bottom: 64px;
}

.whatsapp-feature-card {
    padding: 24px;
}

.whatsapp-icon-container {
    margin-bottom: 4px;
}

.whatsapp-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--purple);
    margin-bottom: 16px;
    hyphens: auto;
    min-height: 70px;
}

.whatsapp-feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
}

.whatsapp-benefits-section {
    background-color: var(--royal-blue);
    border-radius: 16px;
    padding: 70px;
    color: white;
}

.whatsapp-benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

.whatsapp-benefits-title span {
    display: block;
}

.whatsapp-benefits-grid {
    display: grid;
    gap: 32px 20px;
}

.whatsapp-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: start;
}


.whatsapp-benefit-item img  {
    color: var(--purple);
    margin-bottom: 12px;
}

.whatsapp-benefit-item p {
    hyphens: auto;
    font-size: 0.875rem;
    margin: 0;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
}

@media (min-width: 640px) {
    .whatsapp-main-title {
        font-size: 2.25rem;
    }

    .whatsapp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .whatsapp-business-section {
        padding: 64px 90px 0;
    }

    .whatsapp-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .whatsapp-benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/******************/
.violet {
    color: #9a51ee;
}

.hero .violet {
 color: var(--accent-color);
}

.lila {
    color: #B68EE5;
}

.testUniversalContainer {
    color: #002E71;
    background-color: #E5EDF8;
    padding: 100px 90px 0;
}

.testUniversalContainer h2 {
    text-align: center;
}

.testUniversalContainer p {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 500;
}

.testUniversalContainerForm {
    display: flex;
    gap: 40px;
    place-content: center;
    place-items: end;
}

/********************/

.webinarRegister {
    grid-area: webinarRegister;
    padding-left: 60px;

}

.webinarRegisterSticky {
    position: sticky;
    top: 20px;
}

.webinarRegister .hashemBlueWebinar {
    position: absolute;
    top: 245px;
}

.webinarRegister .webinarDate {
    border-radius: 20px;
    background-color: #004BC2;
    padding: 40px;
    margin-left: 60px;
    margin-top: -60px;
}

.webinarDate h2 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    padding: 4px 15px;
    background-color: white;
    margin-bottom: 20px;
}

.webinarDate p {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 145.4%;
    /* 36.35px */
    font-weight: 300;
    margin-bottom: 5px;
}

.webinarDate img {
    margin: 0 5px;
}

.webinarForm {
    
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 410px;
    width: 460px;
}

.testUniversalContainerForm .webinarForm {
    margin-left: 60px;
    margin-top: 20px;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 440px;
    width: 460px;
}

.webinarForm h3,
.sent {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}

.testUniversalContainerForm .webinarForm h3 {
    color: #002E71;
    text-align: start;
    font-weight: 500;
}

.webinarForm form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testUniversalContainerForm .webinarForm form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webinarForm form input,
.pais {
    border-radius: 7px;
    background-color: white;
    border: none;
    padding: 10px;
    color: #00224C;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.testUniversalContainerForm .webinarForm form input {
    background-color: white;
}

.pais {
    border-radius: 7px 0 0 7px;
}
#phone {
    border-radius: 0 7px 7px 0;
    border-left: solid 1px rgb(204, 204, 204);
}
.webinarForm form button {
    width: 65%;
}

.webinarForm form button:hover {
    background-color: #00224C;
}

.sentDescription {
    color: #eaecee;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.googleCalendarContainer {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    color: #00224C;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.googleCalendarContainer a {
    text-decoration: none;
    color: #9c9c9c;
    font-weight: 500;
}

.googleCalendar {
    width: 25px;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.paisList {
    max-height: 245px;
}

.pais img,
.paisList li img {
    max-height: 100%;
    height: 20px;
}

.paisList li img {
    margin-right: 10px;
    margin-bottom: -3px;
}

.pais:hover {
    cursor: pointer;
}

.pais #arrow {
    padding-top: 3px;
}

.pais p img {
    font-size: 10px;
}

.paisList {
    overflow-y: auto;
    width: 300%;
    background-color: white;
    position: absolute;
    top: 43px;
    padding: 10px;
    border-radius: 10px;
    border: solid 1px lightgrey;
}

.paisList li {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    border-bottom: solid 1px lightgrey;
    font-family: 'Roboto', sans-serif;
}

.paisList li:last-child {
    border-bottom: none;
}

.telefonoIputCodarea {
    position: relative;
}

.telefonoIput {
    display: grid;
    grid-template-columns: 25% 75%;
}

.pais {
    display: flex;
    justify-content: space-between;
    color: grey;
}

.paisListOptions span {
    color: grey;
    margin-left: 10px;
}

.emailValidator {
    height: 15px;
    font-family: 'Roboto', sans-serif;
    color: rgb(253, 132, 132);
    font-size: 14px;
}

.emailValidatorText {
    display: none;
}

.visible {
    display: block;
}

form .bttnPrincipal {
    background-color:#E26B04 ;
    
    margin: 0 auto;
}


/*******************************************************/
@media (min-width: 901px) and (max-width: 1100px) {
    .hero .desktop-img, .image-container img, .containerClientsArticles img, .testUniversalContainerForm img {
        width: 50%;
        margin: 0 auto;
    }
    .containerClientsArticles img {
        margin-top: 30px;
    }
    .universalContainer iframe {
        max-width: 100%;
        height: 400px !important;
    }

    .containerClientsArticles {
        margin-bottom: 10px !important;
    }

    .whatsapp-features-grid {
        gap: 10px 30px;
    }

    .webinarForm {
        margin: 0 auto;
        max-width: 400px;
    }

    .webinarForm form button {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {

    br {
        display: none;
    }

    .brDesktop {
        display: inline;
    }

    .headerContainer {
        grid-template-columns: 100%;
        gap: 30px;
        padding: 30px 30px 0;
    }
    

    .hero {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .hero h2 {
        font-size: 33px;
    }

    .heroText span {
        font-size: 50px;
        line-height: normal;
        margin-top: 10px;
    }

    .heroText p {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .heroTextH1Container img {
        display: none;
    }

    /*******/
    .features-section-container {
        padding: 60px 30px;
    }

    h2 {   
        font-family: Montserrat;
        font-size: 30px;
        font-weight: 600;
        line-height: 35px;
        text-align: left;
    }

    .description {
        font-size: 20px;
        line-height: 25px;
        text-align: left;

    }

    .features-grid {
        grid-template-columns: 100%;
    }

    .feature-card h3 {
        min-height: auto;
    }
    .feature-card img {
        display: none;
    }

    /******/
    .containerClientsBox {
        padding: 60px 30px;
    }

    .containerClients h2, .whatsapp-main-title, .whatsapp-benefits-title, .testUniversalContainer h2 {
        font-family: Montserrat;
        font-size: 30px;
        font-weight: 600;
        line-height: 38px;
        text-align: left;
        padding-bottom: 0px;
    }
    
    .divider{
        padding-top: 60px;
        border-top: solid 1px var(--purple);
        width: fit-content;
    }
    
    .containerClientsArticles {
        display: flex;
        flex-direction: column;
        gap:10px;
        margin-bottom: 50px;
        max-width: none;
        padding: 10px 0 10px;
    }

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

    /****************/
    .howTo {
        padding: 0px;
    }
    .howToCard {
        border-radius: 0px;
        padding: 50px 30px;
        grid-template-columns: 100%;
    }

    .universalContainer {
        padding: 60px 30px;
    }

    .universalContainer iframe {
        max-width: 100%;
        height: auto;

    }

    /***********/
    .whatsapp-main-title, .whatsapp-features-grid {
        padding: 0 30px;
    }

    .wspContainer {
        padding: 50px 0;
    }

    .whatsapp-feature-card {
        padding: 24px 0 0; 
    }

    .whatsapp-main-title  {
        margin-bottom: 20px;
    }

    .whatsapp-feature-card h3 {
        min-height: auto;
    }

    .whatsapp-benefits-section {
        border-radius: 0px;
        padding: 50px 30px;
    }

    .whatsapp-benefit-item {
        flex-direction: row;
        gap: 15px;
    }

    /***********/
    .testUniversalContainer {
        padding: 30px 30px 0;
    }

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

    .testUniversalContainer p {
        text-align: start;
        margin-bottom: 40px;
    }

    .webinarForm, .testUniversalContainerForm .webinarForm {
        width: 100%;
        margin: 0px auto;
        padding: 10px 0px 40px;
    }

    .telefonoIput {
        grid-template-columns: 30% 70%;
    }

    .paisList {
        width: 330%;
    }

    .webinarForm form button {
        width: fit-content;
    }
}

@media (min-width:1209px) {
    .containerLayout {
        margin: 0 auto;
        max-width: 1366px
    }
}

/* MEDIA QUERY - GENERAL Zoom */
@media (min-width: 768px) and (max-width: 1800px) {

    nav,
    footer {
        zoom: .85;
    }

    .box-menu button {
        line-height: 1.19;
    }
}