.about-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.section-title{
    text-align: center;
}

.section-title h2{
    color: #CD8195;
    font-family: 'Della Respira', 'sans-serif';
    font-size: 3.5rem;
}

.section-title p{
    color: #98C5AE;
    font-size: 1.1rem;
}

.about-container{
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 3rem;
}

.about-content{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: 1.8rem;
}

.about-content span{
    color: #CD8195;
    font-weight: 600;
}

.about-content p{
    max-width: 650px;
    color: #6c4a3b;
    font-weight: 400;
    line-height: 1.3;
    font-size: 1.05rem;
}

.about-image{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image img{
    width: 100%;
    max-width: 360px;
    display: block;
}

.owner-card{
    color: #CD8195;
    border: 1px solid #CD8195;
    border-radius: 999px;
    padding: .5rem 2rem;
    font-weight: 600;
    transition: .3s;
}

.owner-card:hover{
    gap: 1rem;
    background-color: #CD8195;
    color: #FBF7EE;
}

.about-zanario{
    padding: 4rem 2rem;
}

.about-grid{
    max-width: 1200px;
    margin: .3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card{
    background-color: #FBF7EE;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.about-card:hover{
    transform: translateY(-8px);
}

.card-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.icon-circle{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #CD8195;
    color: #FBF7EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.number{
    display: block;
    color: #CD8195;
    font-weight: 700;
    font-family: 'Della Respira', 'sans-serif';
    font-size: 1.5rem;
}

.card-header h3{
    color: #98C5AE;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.3;
    font-family: 'Della Respira', 'sans-serif';
}

.about-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.2rem;
}

.about-card p{
    color: #6c4a3b;
    line-height: 1.4;
}

@media (max-width: 992px){
    .about-us{
        padding: 4rem 2rem;
    }

    .about-container{
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .about-image{
        order: -1;
    }

    .about-image img{
        max-width: 300px;
    }

    .about-content{
        max-width: 100%;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    .about-content p{
        max-width: 100%;
    }

    .about-zanario{
        padding: 4rem 2rem;
    }

    .about-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px){
    .about-us{
        padding: 3rem 1.25rem;
    }

    .section-title h2{
        font-size: 2rem;
    }

    .section-title p{
        font-size: .95rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-container{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-image img{
        max-width: 240px;
    }
    
    .owner-card{
        padding: .7rem 1.5rem;
        font-size: .9rem;
        text-align: center;
    }

    .about-content{
        padding: 0;
        gap: 1rem;
    }

    .about-content p{
        text-align: center;
        font-size: .95rem;
        line-height: 1.6;
    }

    .about-zanario{
        padding: 3rem 1.25rem;
    }

    .about-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .about-card{
        padding: 1.25rem;
    }

    .card-header{
        align-items: center;
    }

    .icon-circle{
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .number{
        font-size: 1.2rem;
    }

    .card-header h3{
        font-size: 1.35rem;
    }

    .about-card img{
        height: 220px;
    }

    .about-card p{
        font-size: .95rem;
        font-weight: 500;
    }
}