* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ffccf2;
    --title-color: #000;
    --text-color: #707070;
    --button-color:  #0000;
    --button-text-color: #fff;
}

/* resetando listas e links */
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--title-color);
}

body {
    background-color: #faf8f9;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem 2.5rem;
    height: auto;
    background-color: #f7f1f4;
    position: fixed;
    z-index: 3;
}

header h2 {
    font-size: 1.2rem;
}

.list {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    font-size: 15px;
}

.list .contact {
    background-color:#000;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    opacity: 0.9;
    cursor: pointer;
}

.list .contact a {
    color: var(--button-text-color);

}

.list .contact:hover {
    opacity: 1;
    transition: 0.2s ease-in-out;
}

.hamburguer-btn {
    width: 45px;
    display: none;
}

.hamburguer-btn img {
    width: 100%;

}

/* HERO ESTILIZAÇÃO */
#hero {
    padding: 3.5rem 3.8rem;
    padding-top: 130px;
    padding-bottom: 6rem;
    background-color: #ffffff;

}

.text-hero {
    text-align: left;
    max-width: 700px;
    padding: 2rem 1rem;
}

.text-hero h1 {
    margin-bottom: 0.7rem;
    font-size: 1.8rem;
}

.text-hero p {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.text-hero .contact-link {
    background-color: #000;
    color: var(--button-text-color);
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    opacity: 0.9;
}

.text-hero .contact-link:hover {
    opacity: 1;
    transition: 0.2s ease-in-out;
}

/* SOBRE ESTILO */
#sobre {
    padding: 3rem 3rem;
    background-color: #f9f6f7;
}

#box-content-sobre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem;
    gap: 4rem;
}

#sobre .sobre-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

#sobre .text-sobre {
    padding: 2rem 2rem;
    max-width: 50vw;
}

#sobre .text-sobre .subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

#sobre .text-sobre p {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

#sobre .text-sobre .first-decription {
    margin-bottom: 15px;
}

#sobre .img-sobre {
    max-width: 400px;

}

.img-sobre img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 1px 1px 1px #000000b0;
}

/* SERVIÇOS*/
#service {
    padding: 2.5rem 3.5rem;
    background-color: #fdfcfd;

}

#service h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#service .box-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-item {
    max-width: 100%;
    padding: 1rem 1.5rem;


}

.service-item h3 {
    font-size: 1.2rem;
    margin-top: 10px;
}

.service-item p {
    font-size: 0.9rem;
    margin-top: 3px;
    color: var(--text-color);
    font-weight: 600;
}

.service-item img {
    width: 90%;
    border-radius: 20px;
}

/* SEÇÃO DE AVALIAÇÃO */
#avaliation {
    padding: 2.5rem 3.5rem;
    background-color: #f6f3f5;
}

#avaliation h2 {
    text-align: center;

}

.break-line {
    display: block;
    color: var(--text-color);
}

.box-avaliations {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 3rem 3.5rem;
    gap: 2rem;
}

.text-avaliation {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #dbd5d6;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.text-avaliation .space {
    margin-top: 2.5rem;
}

.text-avaliation .name {
    font-weight: 600;
    color: var(--title-color);
}

.text-avaliation .typevalue {
    font-size: 0.9rem;
}

#gallery {
    padding: 2rem 2.5rem;
    background-color: #ffffff;

}

.first-column,
.second-column {
    display: flex;
    justify-content: center;
    align-items: center;

}

.box-img {
    width: 30vw;
}

.box-img img {
    width: 95%;
    border-radius: 10px;
}

/* Formulário */
#formulary {
    padding: 2.5rem 3rem;
    background-color: #f8f5f6;


}

#formulary h2 {
    text-align: center;
    margin-bottom: 2rem;
}

#box-formulary {
    padding: 2rem 2rem;
}

#box-formulary form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

#name-input,
#email-input {
    width: 50%;
    padding: 0.5rem 1rem;
    outline: none;
    border-radius: 7px;
    border: none;
    margin-bottom: 9px;
    background-color: #ffffff;
    border: 1px solid #cecece;
}

#message-text {
    padding: 2rem 1rem;
    width: 50%;
    margin-top: 10px;
    border-radius: 12px;
    border: none;
    background-color: #ffffff;
    border: 1px solid #cecece;
    outline: none;
}

.btn-submit {
    width: 50%;
    margin-top: 15px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.btn-submit:hover {
    opacity: 0.9;

}
.btn-local{
    width: 50%;
    margin-top: 15px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    background-color: #cf3131;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    opacity: 1;
    transition: 0.3s ease-in-out;

}


/* Endereço estilização */
#modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    gap: 20px;
    position: fixed;
    z-index: 4;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
    transition: 0.4s;

}

#hidden-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background: radial-gradient(circle, rgba(3, 3, 3, 0.74) 0%, #000000cb 100%);
    z-index: 3;
    transition: 0.4s ease-in;
}

#modal h2 {
    font-size: 1.9rem;
    text-transform: uppercase;
    color: #fff;
}

#modal h2 span {
    color: var(--primary-color);
}

/* botão contato */
.whatsapp-button {
    position: fixed;
    right: 60px;
    bottom: 40px;
    opacity: 0.9;
    cursor: pointer;

}

.whatsapp-button:hover {
    opacity: 1;
    transition: 0.2s ease-in;
}

.whatsapp-button img {
    width: 50px;
    height: auto;

}
.local-button {
    position: fixed;
    right: 5px;
    bottom: 40px;
    cursor: pointer;
    opacity: 0.9;

}
.local-button:hover{
    opacity: 1;
}
.local-button img{
    width: 50px;
    height: auto;
}
/* footer */
footer {
    padding: 3rem;
    background-color: #f2eef0;
    
}

#column-footer {
    display: flex;
    justify-content: end;
    gap: 2rem;
    font-size: 0.7rem;
    color: var(--text-color);
}

#column-footer .li-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--title-color);
}

/* RESPONSIVO */
@media(max-width: 1050px) {
    .box-avaliations {
        flex-direction: column;
    }

    .text-avaliation {
        margin: 0 auto;
        flex: 0;
        width: 70%;
    }
}

@media(max-width: 900px) {

    html,
    body {
        overflow-x: hidden;
    }

    .navbar {
        display: none;
        position: fixed;
        margin-top: 8px;
        top: 62px;
        right: 20px;
        background-color: #252525;
        padding: 2rem 2rem;
        border-radius: 10px;
        z-index: 1000;
    }

    .navbar .list {
        text-align: left;
        flex-direction: column;
        gap: 10px;

    }
    .navbar .list a{
        color: #ffff;
    }
    .navbar .list a:hover{
        color: #ffa0df;
    }
    .list .contact {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .list .contact a {
        color: #ffffff;
    }

    .navbar.active {
        display: block
    }

    .hamburguer-btn {
        display: block;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
}

@media(max-width: 850px) {
    #sobre {
        padding: 3rem 3rem;
    }

    #box-content-sobre {
        justify-content: center;
        text-align: center;
        gap: 0;
    }

    #sobre .text-sobre {
        max-width: none;
    }

    .img-sobre {
        display: none;
    }
}

@media(max-width: 720px) {

    .service-item {
        text-align: center;
    }

    .service-item img {
        width: 80%;
    }

    #modal iframe {
        width: 80vw;
        height: 60vw;
    }
}

@media(max-width: 630px) {

    .text-hero h1,
    #modal h2 {
        font-size: clamp(1.3rem, 4vw, 2.2rem);
    }

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

    .text-avaliation {
        width: 100%;
    }

    .sobre-title {
        font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    }

    .text-hero p,
    #sobre .text-sobre p {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    }

    #formulary h2 {
        font-size: clamp(1.2rem, 3vw, 1.7rem);
    }

    #box-formulary input,
    #message-text {
        width: 70%;
    }
}

@media(max-width:530px) {
    #sobre {
        margin-top: 4rem;
        padding: 1rem 1rem;
    }

    #hero {
        padding: 1.5rem 1.5rem;
        padding-top: 120px;
    }

    .text-hero,
    #sobre .text-sobre {
        max-width: 95vw;
        width: 100%;
        margin: 0 auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;

    }

    .text-hero {
        text-align: center;
        padding-bottom: 6rem;
    }

    .text-hero p {
        margin-top: 15px;
    }

    #sobre .text-sobre {
        text-align: left;
    }

    .text-hero p,
    .text-sobre p {
        font-size: clamp(0.9rem, 2.4vw, 1.1rem);

    }

    #service {
        padding: 1.5rem 1.5rem;
    }

    #avaliation {
        padding: 0.5rem 0.5rem;
    }

    #gallery {
        padding: 1rem 1rem;
    }

    #gallery .box-img {
        width: 50%;
    }

    #formulary {
        padding: 1rem 1rem;
        padding-top: 3rem;
    }

    #box-formulary {
        padding: 1rem 1rem;
    }

    #modal iframe {
        width: 90vw;
    }
}

@media(max-width: 430px) {
    #hero {
        padding: 1rem 1rem;
        padding-top: 120px;
    }

    #sobre {
        padding: 0.5rem 0.5rem;
    }

    #sobre .text-sobre {
        padding: 0.3rem 0.3rem;
    }

    #service {
        padding: 0.5rem 0.5rem;
    }
    #formulary{
        padding: 0.5rem 0.5rem;
        padding-top: 3rem;
    }
    .text-avaliation p {
        font-size: 0.8rem;
    }

    .text-avaliation .typevalue {
        font-size: 0.7rem;
    }
    .text-avaliation h2{
        font-size: 1rem;
    }
}

@media(max-width: 390px) {
    .text-hero h1 {
        font-size: 1.2rem;
    }

    #formulary h2 {
        font-size: 1.1rem;
    }
    .text-avaliation p{
        font-size: 0.7rem;
    }
    .typevalue {
        font-size: 0.7rem;
    }
}