.elementor-38 .elementor-element.elementor-element-aa9c764{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-cab86a4 *//* =========================
   HEADER CLiC LATAM
========================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

.cliclatam-header {
    --clic-purple: #2d109c;
    --clic-purple-dark: #210772;
    --clic-green: #9bd400;
    --clic-text: #292437;

    position: sticky;
    z-index: 999;
    top: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(45, 16, 156, 0.08);
    box-shadow: 0 6px 25px rgba(34, 15, 96, 0.045);
    backdrop-filter: blur(14px);

    font-family: 'Poppins', sans-serif;
}

.cliclatam-header__container {
    width: 90%;
    max-width: 1450px;
    min-height: 88px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 40px;
}

/* =========================
   LOGO
========================= */

.cliclatam-header__logo {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.cliclatam-header__logo img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 205px;
    object-fit: contain;
}

/* =========================
   NAVEGACIÓN
========================= */

.cliclatam-header__nav {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 34px;
}

.cliclatam-header__nav a {
    position: relative;
    padding: 33px 0;

    color: var(--clic-text);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;

    transition: color 0.25s ease;
}

.cliclatam-header__nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;

    width: 0;
    height: 3px;
    margin: auto;
    border-radius: 20px;

    background: var(--clic-green);

    transition: width 0.25s ease;
}

.cliclatam-header__nav a:hover {
    color: var(--clic-purple);
}

.cliclatam-header__nav a:hover::after {
    width: 100%;
}

/* =========================
   BOTÓN PRINCIPAL
========================= */

.cliclatam-header__button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 12px 19px;
    border-radius: 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #ffffff;
    background: var(--clic-purple);
    box-shadow: 0 9px 22px rgba(45, 16, 156, 0.16);

    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cliclatam-header__button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.25s ease;
}

.cliclatam-header__button:hover {
    color: #ffffff;
    background: var(--clic-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(45, 16, 156, 0.23);
}

.cliclatam-header__button:hover svg {
    transform: translateX(3px);
}

/* =========================
   HAMBURGUESA
========================= */

.cliclatam-header__toggle {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 10px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: rgba(45, 16, 156, 0.07);
    cursor: pointer;
}

.cliclatam-header__toggle span {
    width: 21px;
    height: 2px;
    border-radius: 10px;

    display: block;

    background: var(--clic-purple);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* HAMBURGUESA ABIERTA */

.cliclatam-header.is-open .cliclatam-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cliclatam-header.is-open .cliclatam-header__toggle span:nth-child(2) {
    opacity: 0;
}

.cliclatam-header.is-open .cliclatam-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MENÚ MÓVIL
========================= */

.cliclatam-header__mobile {
    display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1120px) {
    .cliclatam-header__container {
        gap: 25px;
    }

    .cliclatam-header__nav {
        gap: 22px;
    }

    .cliclatam-header__nav a {
        font-size: 12px;
    }

    .cliclatam-header__button {
        padding-inline: 15px;
        font-size: 11px;
    }
}

@media (max-width: 920px) {
    .cliclatam-header__container {
        min-height: 76px;
    }

    .cliclatam-header__logo img {
        height: 47px;
        max-width: 180px;
    }

    .cliclatam-header__nav,
    .cliclatam-header__button {
        display: none;
    }

    .cliclatam-header__toggle {
        margin-left: auto;
        display: flex;
    }

    .cliclatam-header__mobile {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        max-height: 0;
        padding: 0 5%;
        overflow: hidden;

        display: block;

        visibility: hidden;
        opacity: 0;
        background: rgba(255, 255, 255, 0.985);
        border-top: 1px solid rgba(45, 16, 156, 0.07);
        box-shadow: 0 20px 35px rgba(32, 12, 92, 0.12);
        backdrop-filter: blur(15px);

        transform: translateY(-10px);

        transition:
            max-height 0.4s ease,
            padding 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .cliclatam-header.is-open .cliclatam-header__mobile {
        max-height: 550px;
        padding-top: 18px;
        padding-bottom: 24px;

        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .cliclatam-header__mobile nav {
        display: grid;
    }

    .cliclatam-header__mobile nav a {
        min-height: 55px;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(45, 16, 156, 0.08);

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        color: var(--clic-text);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;

        transition:
            color 0.25s ease,
            padding 0.25s ease;
    }

    .cliclatam-header__mobile nav a:hover {
        padding-left: 9px;
        color: var(--clic-purple);
    }

    .cliclatam-header__mobile nav svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: var(--clic-green);
        stroke-width: 2.3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .cliclatam-header__mobile-button {
        width: 100%;
        min-height: 48px;
        margin-top: 20px;
        border-radius: 9px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #ffffff;
        background: var(--clic-purple);

        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .cliclatam-header__container {
        width: calc(100% - 36px);
        min-height: 70px;
    }

    .cliclatam-header__logo img {
        height: 42px;
        max-width: 155px;
    }

    .cliclatam-header__toggle {
        width: 41px;
        height: 41px;
    }

    .cliclatam-header__mobile {
        padding-right: 18px;
        padding-left: 18px;
    }
}/* End custom CSS */