/* reset css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* geral */
:root {
    --cor-fundo-secundaria: #000000;
    --cor-texto-secundaria: #fff;
    --cor-texto-titulo-produto: #cf1f1f;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

section {
    padding: 100px 20px;
}

/* header */
header {
    background-color: var(--cor-fundo-secundaria);
    display: flex;
    justify-content: center;
    padding: 20px 0;

    position: sticky;
    top: 0;

    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.logo-BM img {
    width: 40px;
    height: auto;
}

header span {
    color: var(--cor-texto-secundaria);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-left: 12px;
    cursor: default;
}

nav a {
    color: var(--cor-texto-secundaria);
    cursor: pointer;
}

nav a:hover {
    color: var(--cor-texto-titulo-produto);
}

/* conteudo principal main */
main {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

main::after {
    content: "";
    display: table;
    clear: both;
}

.nav {
    display: flex;
    gap: 32px;
    font-size: 16px;
    text-transform: capitalize;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 18px;
    color: #fff;
    padding-block: 16px;
    cursor: pointer;
}

.nav-list a:hover {
    color: #cf1f1f;
}

/* HAMBURGER */

.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: 0.3s;
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.3s;
}

.hamburger span::before {
    top: -8px;
}

.hamburger span::after {
    top: 8px;
}

/* ANIMAÇÃO */

.hamburger.active span {
    background: transparent;
}

.hamburger.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.sobre {
    position: relative;
}

.section__text__p1 {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;

    max-width: 1200px;
    margin: auto;

    padding: 100px 20px;
}

.about-image img {
    width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;

}

/* ===============================
SERVICES
================================*/

#services {
    padding: 80px 20px;
}

/* CONTAINER PRINCIPAL */

.services-container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 80px;

    max-width: 1200px;
    margin: 0 auto;
}

/* TEXTO */

.services-text {
    flex: 1;
    max-width: 520px;
}

.services-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

/* LISTA DE SERVIÇOS */

.services-list {
    list-style: none;
}

.services-list li {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

/* ÍCONE */

.services-list li::before {
    content: "⚙️";
    position: absolute;
    left: 0;
}

/* GALERIA DE IMAGENS */

.services-gallery {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.services-gallery img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* BOTÃO */

.services-button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* VIDEO */

.services-video {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-video video {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
}

#reviews {
    padding: 80px 20px;
    text-align: center;
}



#location {
    padding: 80px 20px;
}

.location-container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 80px;

    max-width: 1200px;
    margin: auto;

    padding: 0 20px;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.location-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.location-text a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.location-text a:hover {
    color: #cf1f1f;
    transform: scale(1.05);
}

/* hero / banner principal */
.hero {
    position: relative;

    height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.hero-text {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 20px;
}

.btn {
    background: #d92323;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.1);
    background: #b71c1c;
}

.whatsapp-float {

    position: fixed;
    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: white;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

    z-index: 1000;

    transition: 0.3s;

    animation: pulse 2s infinite;

}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.footer {
    background: #f5f5f5;
    padding: 20px 40px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 25px;
    font-size: 24px;
}

.footer-social a {
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #cf1f1f;
    transform: scale(1.2);
}

.footer-rights {
    font-size: 14px;
    color: #555;
}

body.menu-open {
    overflow: hidden;
}

.about-container,
.services-container,
.location-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}