.appointment-cta {
    position: relative;
    display: flex;
    min-height: 291px;
    overflow: hidden;
    padding: 76px 20px 50px;
    align-items: flex-start;
    justify-content: center;
    background-image: url("../../assets/agende-avaliacao-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: "Poppins", Arial, sans-serif;
    }
    .appointment-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.68);
    }
    .appointment-cta__container {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    text-align: center;
    }
    .appointment-cta h2 {
    margin: 0;
    color: #0769dd;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 300;
    }
    .appointment-cta h2 strong {
    font-weight: 500;
    }
    .appointment-cta p {
    margin: 10px 0 0;
    color: #0769dd;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    }
    .appointment-cta__button {
    display: inline-flex;
    min-width: 169px;
    height: 39px;
    margin-top: 29px;
    padding: 0 17px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    background: #ff8300;
    box-shadow: 0 5px 15px rgba(255, 131, 0, 0.2);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }
    .appointment-cta__button:hover {
    background: #e97500;
    box-shadow: 0 8px 20px rgba(255, 131, 0, 0.28);
    transform: translateY(-2px);
    }
    .appointment-cta__button:focus-visible {
    outline: 2px solid #0769dd;
    outline-offset: 4px;
    }
    .appointment-cta__button svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    }
    @media (max-width: 700px) {
    .appointment-cta {
    min-height: 270px;
    padding: 60px 20px 45px;
    background-position: center center;
    }
    .appointment-cta h2 {
    font-size: 29px;
    }
    .appointment-cta p {
    font-size: 12px;
    }
    .appointment-cta__button {
    margin-top: 25px;
    }
    }
    @media (max-width: 460px) {
    .appointment-cta {
    min-height: 250px;
    padding-top: 52px;
    }
    .appointment-cta h2 {
    font-size: 25px;
    }
    .appointment-cta p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    }
    }