/**
 * Css for Widget cta-demo v01
 * Design: esatto come demo.deverso.tech
 */

.cta-demo_v01 {
    background-color: #2B3338;
    padding: 100px 0;
}

.cta-demo_v01__inner {
    max-width: 1088px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
}

.cta-demo_v01__title {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    color: #FAFAFA;
    text-transform: uppercase;
    margin: 0;
}

.cta-demo_v01__description {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: #FAFAFA;
    max-width: 800px;
    margin: 0;
}

/* Pill CTA Button - backdrop blur con bordo arancione */
.cta-demo_v01__pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 1px solid #EE6440;
    border-radius: 42px;
    padding: 8px 8px 8px 20px;
    max-width: 344px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-demo_v01__pill:hover {
    background: rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.cta-demo_v01__pill-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
}

.cta-demo_v01__pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EE6440;
    border-radius: 24px;
    padding: 11px;
    margin-left: 16px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.cta-demo_v01__pill-icon svg {
    transform: rotate(-90deg);
}

.cta-demo_v01__pill:hover .cta-demo_v01__pill-icon {
    background-color: #D24825;
}

@media (min-width: 768px) {
    .cta-demo_v01 {
        padding: 120px 0;
    }
}

@media (min-width: 992px) {
    .cta-demo_v01 {
        padding: 150px 0;
    }
}

@media (max-width: 991.98px) {
    .cta-demo_v01__title {
        font-size: 32px;
    }
    .cta-demo_v01__description {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .cta-demo_v01 {
        padding: 80px 0;
    }
    .cta-demo_v01__title {
        font-size: 24px;
    }
    .cta-demo_v01__description {
        font-size: 18px;
    }
}
