/* Hero */
.hero-about {
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/guitarra.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    z-index: 1;
}

@media (max-aspect-ratio: 1717/916) {
    .hero-works::before {
        background-size: cover;
    }
}

.hero-about::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        #000 0%,
        rgba(0, 0, 0, 0.85) 30%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 75%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

section {
    padding: 60px 0;
}

.section-tag {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Seção Sobre */

.about-section{
    background: #111;
}

.about-grid{
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-photo{
    position: relative;
}

.about-photo img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, .75);
    border: 1px solid rgb(255, 140, 43, 0.5);
}

.about-photo {
    border-radius: 24px;
    pointer-events: none;
}

.about-content{
    max-width: 720px;
    text-align: justify;
}

.about-content h2{
    font-size: 52px;
    line-height: 1.1;
    margin: 18px 0 22px;
    font-weight: 700;
}

.about-content h2 span{
    color: var(--primary);
}

.title-divider{
    width: 90px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
    margin-bottom: 32px;
}

.about-content p{
    font-size: 18px;
    line-height: 1.9;
    color: #bdbdbd;
    margin-bottom: 24px;
}

.about-content p:last-child{
    margin-bottom: 0;
}

/* Seção Serviços */
.services-about .center{
    display: block;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.service-body {
    position: relative;
    text-align: justify;
    padding: 40px 20px 20px;
    z-index: 2;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
}

.service-card{
    position: relative;
    overflow: hidden;
    background: #040404;
    border: 1px solid rgb(255, 140, 43, 0.5);
    border-radius: 22px;
    transition: transform .35s, box-shadow .35s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 10px 10px 10px rgba(0,0,0,.45);
}

.service-card img{
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform .6s;
}

.service-card img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: -25px;
}

.service-card:hover img{
    transform: scale(1.06);
}

.service-card::before{
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 260px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, .15) 45%,
        rgba(0, 0, 0, .45) 65%,
        rgba(0, 0, 0, .75) 82%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Ícone */
.service-icon{
    position: absolute;
    top: -28px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #040404;
    border: 1px solid rgba(255,140,43,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 21px;
    box-shadow: 0 0 0 2px #040404;
}

.icon {
    height: 36px;
    width: 36px;
}

.service-body h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-body p{
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
}

/* Card Atendimento Online */
.online-section{
    padding-top: 0;
}

.online-card{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
    background: #040404;
    border: 1px solid rgb(255, 140, 43, 0.5);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.online-left{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-left: 10px;
    z-index: 2;
}

.online-icon{
    width: 90px;
    height: 90px;
    border-radius: 22px;
    background: rgba(255,140,43,.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 38px;
    flex-shrink: 0;
}

.online-left h2{
    margin-top: 12px;
    font-size: 2rem;
    line-height: 1.15;
}

.online-left h2 span{
    color: var(--primary);
}

.online-right{
    position: relative;
    z-index: 2;
}

.online-right p{
    color: #bdbdbd;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

.online-right ul{
    list-style: none;
}

.online-right li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #e2e2e2;
    margin-bottom: 5px;
    line-height: 1.8;
}

.online-right li::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 10px;
    flex-shrink: 0;
}

/* Responsividade */
@media(max-width:768px){

    /* Hero */
    .hero-text {
        width: min(1200px, 90%);
        margin: auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    /* Sobre */
    .about-grid {
        display: flex;
        flex-direction: column;
        width: min(1200px, 90%);
        margin: auto;
        gap: 1rem;
    }

    .about-content {
        display: contents;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .about-content h2 {
        margin: 0.5rem 0;
    }

    .about-title {
        order: 1;
    }

    .title-divider {
        order: 2;
        margin-bottom: 1rem;
    }

    .about-photo {
        order: 3;
    }

    .about-photo img {
        height: 70vh;
    }
    
    .about-content p {
        order: 4;
        text-align: justify;
        margin: 0.75rem 0;
    }

    /* Serviços */
    .section-title {
        width: 80%;
        text-align: center;
        margin: 1rem auto 2rem;
        font-size: 2rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        width: min(1200px, 90%);
        margin: auto;
        gap: 20px;
    }

    .service-card img {
        height: 40vh;
        background-position: top center;
    }

    /* Online */
    .online-card {
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }

    .online-left {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .online-left .section-tag {
        font-size: 1.2rem;
    }

    .online-left h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }
}