:root {
    --bg-color: #000;
    --button-color: #D4AF37;
    --main-color: #fff;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--main-color);
    transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: "BBH Hegarty", sans-serif;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: var(--border);
    background-color: #000;
}

header .section-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

header .logo {
    width: 7rem;
}

header .logo:hover {
    transform: scale(1.1);
}

header .ul-bar {
    display: flex;
    list-style: none;
    gap: 3rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.nav-bar a:hover {
    color: rgb(146, 146, 146);
    border-bottom: 2px solid #ffffff4d;
}

.nav-bar li:hover {
    transform: scale(1.2);
}

.icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    font-weight: bold;
}

/*menu-mob*/

.ul-bar-mob {
    display: none;
}

/*MAIN*/


.section-hero {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero img {
    float: none;
    height: 100rem;
    width: 100%;
}

.hero img.lip-mob {
    display: none;
}

.hero-agend {
    position: relative;
    top: 0;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-agend h1,
p {
    text-wrap: wrap;
}

.hero-agend h1 {
    font-weight: bold;
    font-size: 4rem;
    text-transform: none;
    margin-right: 20px;
    margin: 0;
    padding: 0;
}

.hero-agend p {
    font-weight: bold;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    padding: 0;
}

.hero-agend a {
    background-color: var(--button-color);
    font-size: 20px;
    padding: 8px;
    border-radius: 1.5rem;
    color: var(--main-color);
    display: inline-block;
}

.hero-agend a:hover {
    background-color: #ac8403;
    color: var(--main-color);
    transform: scale(1.1);
}

/*destaques*/

.destaques-imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px;
    margin: 10px;
}

.destaques-imgs img {
    max-width: 27rem;
    width: 100%;
    border: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.destaques-imgs img:hover {
    transform: scale(1.05);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
}

.section-destaques {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    max-width: 1200px;
}

.section-destaques h1 {
    margin: 0 20px;
    text-align: center;
    font-size: 50px;
}

/*fachada*/

.fachada {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.fachada h1 {
    font-size: 40px;
}

.fachada p {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
}

.fachada-text {
    max-width: 600px;
    text-align: justify;
    line-height: 1.6;
    font-weight: lighter;
}

.fachada-lipp {
    margin: 0;
}

.fachada-lipp img {
    width: 600px;
    height: 700px;
    border-radius: 10px;

}

/*servicos*/

.section-services {
    padding: 4rem 2rem;
}

.section-services h1 {
    text-align: center;
    font-size: 4rem;
    margin: 4rem 0;
}

.container-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    place-items: center;
}

.card-service {
    text-align: center;
    font-size: 2rem;
    border: var(--border);
    border-radius: 0.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 40rem;
    height: auto;
    transition: transform 0.3s ease;
}

.card-service:hover {
    transform: scale(1.1);
}

.card-service h2 {
    color: var(--button-color);
}

.card-service a {
    display: inline-block;
    font-size: 20px;
    padding: 8px;
    border-radius: 15px;
    background-color: var(--button-color);
    font-weight: bold;
    transition: transform 0.4s ease;
}

.card-service a:hover {
    background-color: #ac8403;
    color: var(--main-color);
    transform: scale(1.1);
}

.card-service .info-service {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 2rem;
}

.info-service i {
    font-weight: bold;
    color: #D4AF37;
    margin-right: 1rem;
    text-transform: none;
}

.card-service p {
    text-transform: none;
    opacity: 0.8;
    width: 100%;
}

.info-service strong {
    font-weight: bold;
    color: var(--button-color);
    text-transform: none;
}

.info-service span {
    color: var(--button-color);
    font-weight: bold;
    text-transform: none;
}

/*Contatos*/

section.contact {
    padding: 8rem 10%;
    border-top: var(--border);
    border-bottom: var(--border);
}

.contact-box {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.contact-box h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.contact-box p {
    font-size: 2rem;
    opacity: 0.8;
    margin-bottom: 4rem;
    text-transform: none;
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--button-color);
    padding: 1.5rem 4rem;
    gap: 15px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 15px;
}

.btn-whatsapp:hover {
    background-color: #ac8403;
    color: var(--main-color);
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 4rem;
    margin-top: 4rem;
}

.social-icons a {
    font-size: 3.5rem;
    color: var(--main-color);
}

.social-icons a:hover {
    color: var(--button-color);
    transform: scale(1.1);
}

/*footer*/

.footer {
    border-top: var(--border);
    padding: 5rem 8% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
}

.footer-contact h3,
.footer-icons h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-contact span {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: none;
}

.footer-contact i {
    color: var(--button-color);
    margin-right: 1rem;
}

.footer-icons i {
    margin: 0 1rem 1rem 1rem;
}

.footer-icons a {
    display: inline-block;
    font-size: 3rem;
    color: var(--main-color);
}

footer .footer-icons a:hover {
    color: var(--button-color);
    transform: scale(1.2);
}

.footer-lipp {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.3rem;
    opacity: 0.6;
}

/*mediascreen*/

/* telas até 1370px */
@media (max-width: 1370px) {
    .section-hero {
        padding: 0;
    }

    .fachada-text {
        padding: 3rem;
    }

    .destaques-imgs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem;
    }

}


/* tablets */
@media (max-width: 1024px) {
    .section-hero {
        padding: 1rem;
    }

    .ul-bar-mob {
        display: none;
    }

    .hero-agend h1 {
        margin-top: 1.4rem;
        font-size: 3rem;
    }

    .hero-agend p {
        font-size: 2rem;
    }

    .fachada {
        flex-direction: column;
        padding: 0 2rem;
    }

    .fachada-text {
        padding: 2rem;
    }

    .hero img {
        display: none;
    }

    .hero img.lip-mob {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .destaques-imgs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem;
    }
}

/* mobile */
@media (max-width: 768px) {
    .section-hero {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        border-bottom: var(--border);
    }

    header .section-bar {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    header .logo {
        width: 5rem;
    }

    header .logo:hover {
        transform: scale(1.1);
    }

    .ul-bar-mob {
        display: flex;
        list-style: none;
        gap: 1.2rem;
        font-size: 1.7rem;
        font-weight: bold;
        position: absolute;
        right: 4rem;
    }

    .ul-bar-mob a :hover {
        color: var(--button-color);
    }

    .ul-bar a {
        display: none;
    }

    .nav-bar a:hover {
        color: rgb(146, 146, 146);
        border-bottom: 2px solid #ffffff4d;
    }

    .nav-bar li:hover {
        transform: scale(1.2);
    }

    .icon {
        display: none;
    }

    .section-hero {
        align-items: center;
        padding: 2rem;
    }

    .fachada {
        padding: 0;
    }

    .fachada h1 {
        font-size: 2.6rem;
    }

    .fachada p {
        font-size: 1.5rem;
    }

    .fachada-text {
        padding: 2rem;
    }

    .fachada-lipp img {
        height: auto;
        max-width: 35rem;
    }

    .hero-agend {
        justify-content: center;
        align-items: center;
        padding: 0 rem;
    }

    .hero img {
        float: none;
    }

     .hero img.lip-mob {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }


    header .icon {
        display: none;
    }

    .hero-agend a {
        font-size: 1.8rem;
        border-radius: 1.4rem;
    }

    .hero-agend h1 {
        font-size: 2.6rem;
    }

    .hero-agend p {
        font-size: 1.5rem;
    }

    .container-services {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 2rem;
    place-items: center;
}

    .card-service {
        max-width: 30rem;
    }

    .card-service a {
        font-size: 1.8rem;
        border-radius: 1.4rem;
    }

    .card-service .info-service {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 2rem;
    }

    .info-service i {
        font-weight: bold;
        color: #D4AF37;
        margin-right: 1rem;
        text-transform: none;
    }

    .card-service h2 {
        font-size: 2.3rem;
    }

    .card-service p {
        font-size: 1.5rem;
    }

    .section-services h1 {
        font-size: 2.6rem;
    }

    .info-service strong {
        font-size: 1.8rem;
    }

    .info-service span {
        font-size: 1.8rem;
    }

    .section-destaques h1 {
        font-size: 2.6em;
    }

    .destaques-imgs img {
        width: 30rem;
        border: none;
        border-radius: 0.5rem;
        transition: transform 0.3s ease;
    }

    .destaques-imgs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}