/* =========================================================
   CTA HOME
========================================================= */

.cta-home {

    padding: 0 40px 60px;

    background: var(--color-white);

}

/* =========================================================
   CONTAINER
========================================================= */

.cta-home__container {

    position: relative;

    background: linear-gradient(
        90deg,
        #07194b 0%,
        #0d2a78 100%
    );

    border-radius: var(--radius-md);

    padding: 24px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

/* =========================================================
   DECORATION
========================================================= */

.cta-home__container::before {

    content: "";

    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    width: 70px;
    height: 70px;

    background-image: radial-gradient(
        rgba(255,255,255,0.14) 1px,
        transparent 1px
    );

    background-size: 8px 8px;

    opacity: 0.35;

}

/* =========================================================
   CONTENT
========================================================= */

.cta-home__content {

    position: relative;

    z-index: 2;

}

/* =========================================================
   TITLE
========================================================= */

.cta-home__title {

    font-size: 24px;

    font-weight: 800;

    line-height: 1.4;

    color: var(--color-white);

}

/* =========================================================
   ACTIONS
========================================================= */

.cta-home__actions {

    position: relative;

    z-index: 2;

}

/* =========================================================
   BUTTON
========================================================= */

.cta-home__btn {

    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    background: var(--color-secondary);

    color: var(--color-white);

    border-radius: var(--radius-sm);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: var(--transition-fast);

}

.cta-home__btn:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   BUTTON ICON
========================================================= */

.cta-home__btn svg {

    width: 14px;
    height: 14px;

    stroke-width: 2.5;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .cta-home {

        padding: 0 30px 50px;

    }

    .cta-home__container {

        flex-direction: column;

        text-align: center;

    }

}

@media (max-width: 768px) {

    .cta-home {

        padding: 0 25px 50px;

    }

    .cta-home__container {

        padding: 24px 20px;

    }

    .cta-home__title {

        font-size: 20px;

    }

    .cta-home__btn {

        width: 100%;

    }

}