.featured-header > .register-btn {
background: var(--second-color);
    color: white;
    font-weight: 400;
    padding: 6px 0px;
    padding-left: 18px;
    border-radius: 60.5px;
    text-decoration: none;
    display: flex;
    width: 243px;
    height: auto;
    text-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: -10px;
}

.featured-header .register-btn > span {
    color: var(--second-color);
    background: #fff;
    border-radius: 30px;
    padding: 14px 17px;
    margin-left: 19px;
    text-align: center;
    }
.featured-section {
    background: #fff;
    padding: 100px 0px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-header h2 {
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--second-color);
}

.featured-section p {
    margin-top: 0;
    color: var(--first-color);
    font-size: 16px;
}

.featured-header .btn {
    background: var(--fourth-color);
    color: #fff;
}

.featured-header .btn .circle {
    background: #fff;
    color: var(--fourth-color);
}

/* Monitor normali / laptop */
@media (min-width: 800px) and (max-width: 1024px) {
    .featured-header h2 {
        font-size: 2rem;
        
    }
    .featured-header > .register-btn{
        margin: 10% 0px;
    }
    .circleRegister {
        padding: 5px 10px;
    }
}


/* TABLET (da 600px a 800px) */
@media (min-width: 600px) and (max-width: 800px) {
    .featured-header .register-btn {
    width: 265px !important;
}
.featured-header .register-btn > span {
    color: var(--second-color);
    background: #fff;
    border-radius: 30px;
    padding: 14px 17px;
    margin-left: 56px;
    text-align: center;
    }
    .featured-header {
        justify-content: center;
        display: block;
        margin-bottom: 4%;
        text-align: center;
    }
    .featured-section p {
        font-size: 25px;
        text-align: justify;
    }
    .featured-header h2 {
        font-size: 2rem;
        width: 100%;
        text-align: center;
    }
    .featured-header > .register-btn {
        width: 100%;       
        max-width: 270px;  
        margin: 10% auto;  
        box-sizing: border-box; 
    }
}

/* SMARTPHONE (fino a 600px) */
@media (max-width: 600px) {
    .featured-header  .register-btn {
    background: var(--second-color);
    color: white;
    font-weight: 400;
    padding: 6px 0px;
    padding-left: 18px;
    border-radius: 60.5px;
    text-decoration: none;
    display: flex;
    height: auto;
    width: 223px; /* mantieni larghezza fissa */
    text-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: -10px;
    box-sizing: border-box; /* importante per padding e larghezza */
}

    .featured-header {
        display: block;
        margin-bottom: 5%;
        text-align: center;
    }
    .featured-section {
    padding: 10px 0px;
}
    .featured-section p {
        font-size: 12px;
        text-align: justify;
    }
    .featured-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    .featured-header > .register-btn {
    margin: 0 auto 20px auto;
    }
    .circleRegister {
        padding: 5px 10px;
    }
}