
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: 'Poppins', sans-serif;
}


/* =====================================
   CORES
===================================== */

:root {
    --preto: #000000;
    --preto-sec: #151515;
    --preto-card: #1c1c1c;
    --dourado: hsl(64, 93%, 54%);
    --branco: #ffffff;
    --cinza: #cfcfcf;
    --verde: #08c240;
    --azul: #08daff;
}


/* =====================================
   CABEÇALHO
===================================== */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    background: rgba(13, 13, 13, 0.96);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;

    align-items: center;

    padding: 0 clamp(20px, 4vw, 50px);

    z-index: 9999;

    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}


/* =====================================
   LOGO
===================================== */

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 70px;
    object-fit: contain;
}


/* =====================================
   MENU DESKTOP
===================================== */

nav {
    margin-left: auto;
    margin-right: 25px;
}

nav ul {
    display: flex;

    align-items: center;

    list-style: none;

    gap: clamp(15px, 2vw, 30px);
}

nav ul li a {
    text-decoration: none;

    text-transform: uppercase;

    color: var(--branco);

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--azul);
}


/* =====================================
   BOTÃO HAMBÚRGUER
===================================== */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    background: transparent;

    border: none;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    padding: 0;

    line-height: 1;

    z-index: 10001;

    transition: 0.3s ease;
}

.menu-toggle:hover {
    color: var(--azul);

    transform: scale(1.08);
}


/* =====================================
   BANNER
===================================== */

.banner {
    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 500px;

    overflow: hidden;
}

.banner > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================
   CONTEÚDO DO BANNER
===================================== */

.banner-content {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding: 0 0 40px 0;

    z-index: 2;
}


/* =====================================
   BOTÃO BANNER
===================================== */

.btn-banner {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 28px;

    background: #01b60a;

    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    text-align: center;

    line-height: 1;

    transition: all 0.3s ease;
}

.btn-banner:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(1, 182, 10, 0.35);
}

.btn-banner img {
    width: 27px;
    height: 27px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;
}

.btn-banner span {
    display: flex;

    align-items: center;

    line-height: 1;
}


/* =====================================
   TÍTULOS
===================================== */

section h2 {
    text-align: center;

    text-transform: uppercase;

    font-size: clamp(1.8rem, 4vw, 2.6rem);

    margin-bottom: 60px;

    color: var(--azul);

    line-height: 1.2;
}


/* =====================================
   SERVIÇOS
===================================== */

.servicos {
    width: 100%;

    padding: 100px 6%;
}


/* =====================================
   CONTAINER CARROSSEL
===================================== */

.carousel-container {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    padding: 0 25px;
}


/* =====================================
   CARROSSEL
===================================== */

.carousel {
    display: flex;

    gap: 30px;

    width: 100%;

    min-width: 0;

    /*
       IMPORTANTE:
       O carrossel não fica mais
       rolável manualmente.
       O JavaScript controla
       o scroll pelas setas.
    */

    overflow-x: hidden;
    overflow-y: hidden;

    scroll-behavior: smooth;

    padding: 10px 5px 20px;

    scrollbar-width: none;

    -ms-overflow-style: none;
}


/* Chrome / Edge / Safari */

.carousel::-webkit-scrollbar {
    display: none;
}


/* =====================================
   CARDS
===================================== */

.card {
    min-width: 0;

    width: calc(
        (100% - 60px) / 3
    );

    flex: 0 0 calc(
        (100% - 60px) / 3
    );

    background: var(--preto-card);

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.15);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);

    border-color: var(--dourado);

    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.2);
}


/* =====================================
   IMAGEM DOS CARDS
===================================== */

.card img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}


/* =====================================
   TÍTULO DOS CARDS
===================================== */

.card h3 {
    text-align: center;

    margin: 20px 10px;

    font-size: 20px;

    line-height: 1.3;
}


/* =====================================
   BOTÃO DOS CARDS
===================================== */

.card a {
    display: block;

    width: 90%;

    margin: 20px auto;

    padding: 12px;

    text-align: center;

    background: var(--verde);

    color: #000000;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.card a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(212, 175, 55, 0.25);
}


/* =====================================
   SETAS DO CARROSSEL
===================================== */

.carousel-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: var(--verde);

    color: #000000;

    font-size: 22px;

    font-weight: bold;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100;

    transition:
        all 0.3s ease;

    user-select: none;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover:not(:disabled) {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 5px 20px rgba(212, 175, 55, 0.35);
}

.carousel-btn:active:not(:disabled) {
    transform:
        translateY(-50%)
        scale(0.95);
}


/* =====================================
   SETA DESABILITADA
===================================== */

.carousel-btn:disabled {
    opacity: 0.25;

    cursor: default;

    pointer-events: none;

    box-shadow: none;
}


.carousel-btn.prev {
    left: -5px;
}


.carousel-btn.next {
    right: -5px;
}


/* =====================================
   SOBRE NÓS
===================================== */

.sobre-nos {
    width: 100%;

    padding: 100px 6%;

    background: var(--preto-sec);
}

.texto-sobre {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.texto-sobre h3 {
    color: var(--dourado);

    font-size: 24px;

    margin-bottom: 25px;
}

.texto-sobre p {
    color: var(--cinza);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 22px;
}


/* =====================================
   LOCALIZAÇÃO
===================================== */

.localizacao {
    width: 100%;

    padding: 100px 6%;
}


/* =====================================
   LOJAS
===================================== */

.lojas {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(min(350px, 100%), 1fr));

    gap: 30px;

    width: 100%;
}


/* =====================================
   CARD DA LOJA
===================================== */

.loja {
    width: 100%;

    background: var(--preto-card);

    padding: 20px;

    border-radius: 20px;

    border: 1px solid rgba(212, 175, 55, 0.15);

    transition: 0.3s;
}

.loja:hover {
    transform: translateY(-5px);
}

.loja h3 {
    color: var(--branco);

    margin-bottom: 15px;

    font-size: 20px;
}


/* =====================================
   MAPA
===================================== */

.loja iframe {
    display: block;

    width: 100%;
    height: 250px;

    border: none;

    border-radius: 12px;
}


/* =====================================
   BOTÃO LOCALIZAÇÃO
===================================== */

.loja a {
    display: block;

    width: 100%;

    text-align: center;

    margin-top: 15px;

    text-decoration: none;

    background: var(--dourado);

    color: #000000;

    padding: 12px;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.loja a:hover {
    transform: translateY(-3px);
}


/* =====================================
   CONTATO
===================================== */

.contato {
    width: 100%;

    padding: 100px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #111111,
            #1d1d1d
        );
}

.contato p {
    color: var(--cinza);

    margin-bottom: 30px;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.7;
}


/* =====================================
   BOTÃO CONTATO
===================================== */

.btn-contato {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: var(--verde);

    color: #ffffff;

    padding: 18px 35px;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.btn-contato:hover {
    transform: translateY(-4px);
}


/* =====================================
   INSTAGRAM
===================================== */

.btn-instagram {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(
            45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf,
            #4f5bd5
        );

    color: #ffffff;

    padding: 18px 35px;

    border-radius: 8px;

    font-weight: 700;

    transition: all 0.3s ease;

    box-shadow:
        0 5px 15px rgba(214, 41, 118, 0.25);
}

.btn-instagram:hover {
    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(214, 41, 118, 0.45);
}


/* =====================================
   WHATSAPP FLUTUANTE
===================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 70px;
    height: 70px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 35px;

    text-decoration: none;

    z-index: 9999;

    animation: pulse 2s infinite;

    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.4);
}


/* =====================================
   ANIMAÇÃO WHATSAPP
===================================== */

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


/* =====================================
   TABLET
===================================== */

@media screen and (max-width: 992px) {

    header {
        height: 80px;

        padding:
            10px 25px;

        gap: 15px;
    }

    .logo img {
        height: 60px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .btn-whatsapp {
        padding: 11px 18px;

        font-size: 13px;
    }

    .banner {
        height: calc(100vh - 80px);

        min-height: 450px;

        margin-top: 80px;
    }

    .banner-content {
        padding:
            0 25px 30px;

        justify-content: center;
    }

    .servicos,
    .sobre-nos,
    .localizacao {
        padding:
            80px 5%;
    }


    /* =================================
       CARROSSEL TABLET
       2 CARDS
    ================================= */

    .carousel-container {
        padding: 0 20px;
    }

    .carousel {
        gap: 25px;
    }

    .card {
        width:
            calc((100% - 25px) / 2);

        flex:
            0 0 calc((100% - 25px) / 2);
    }

    .carousel-btn.prev {
        left: -2px;
    }

    .carousel-btn.next {
        right: -2px;
    }

}


/* =====================================
   MENU MOBILE
===================================== */

@media screen and (max-width: 768px) {

    /* =================================
       HEADER
    ================================= */

    header {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        height: 70px;
        min-height: 70px;

        padding: 8px 15px;

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: space-between;

        gap: 10px;

        z-index: 9999;
    }


    /* =================================
       LOGO
    ================================= */

    .logo {
        display: flex;

        align-items: center;

        flex-shrink: 0;
    }

    .logo img {
        height: 50px;

        width: auto;
    }


    /* =================================
       BOTÃO HAMBÚRGUER
    ================================= */

    .menu-toggle {
        display: flex;

        margin-left: auto;

        flex-shrink: 0;
    }


    /* =================================
       ESCONDER WHATSAPP
    ================================= */

    .btn-whatsapp {
        display: none;
    }


    /* =================================
       MENU FECHADO
    ================================= */

    nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: rgba(13, 13, 13, 0.98);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-top:
            1px solid rgba(8, 218, 255, 0.15);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    /* =================================
       MENU ABERTO
    ================================= */

    nav.active {
        max-height: 500px;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        padding:
            10px 0 15px;
    }


    /* =================================
       LISTA
    ================================= */

    nav ul {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: center;

        gap: 0;

        list-style: none;
    }


    /* =================================
       ITENS
    ================================= */

    nav ul li {
        width: 100%;

        margin: 0;

        padding: 0;

        text-align: center;
    }


    /* =================================
       LINKS
    ================================= */

    nav ul li a {
        display: block;

        width: 100%;

        padding: 14px 20px;

        color: #ffffff;

        font-size: 14px;

        font-weight: 500;

        text-decoration: none;

        text-transform: uppercase;

        transition: 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--azul);

        background:
            rgba(8, 218, 255, 0.08);
    }


   /* =================================
   BANNER MOBILE
================================= */

.banner {
    margin-top: 70px;

    width: 100%;

    height: auto;

    min-height: 0;

    aspect-ratio: auto;

    overflow: hidden;

    background: #000000;
}

.banner > img {
    position: relative;

    inset: auto;

    width: 100%;

    height: auto;

    min-height: 0;

    object-fit: contain;

    display: block;
}


    /* =================================
       CONTEÚDO BANNER
    ================================= */

    .banner-content {
        width: 100%;
        height: 100%;

        padding: 15px;

        display: flex;

        align-items: flex-end;

        justify-content: center;
    }


    /* =================================
       BOTÃO BANNER
    ================================= */

    .btn-banner {
        width: auto;

        max-width: 300px;

        min-height: 44px;

        padding:
            8px 13px;

        font-size: 13px;
    }

    .btn-banner img {
        width: 22px;
        height: 22px;
    }


    /* =================================
       SEÇÕES
    ================================= */

    section {
        width: 100%;

        padding:
            70px 20px !important;
    }


    /* =================================
       TÍTULOS
    ================================= */

    section h2 {
        font-size: 26px;

        margin-bottom: 35px;

        line-height: 1.2;
    }


    /* =================================
       SOBRE NÓS
    ================================= */

    .texto-sobre h3 {
        font-size: 21px;
    }

    .texto-sobre p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* =================================
       CARROSSEL MOBILE
       1 CARD
    ================================= */

    .carousel-container {
        width: 100%;

        padding: 0 15px;

        position: relative;
    }

    .carousel {
        width: 100%;

        gap: 15px;

        overflow-x: hidden;

        overflow-y: hidden;

        scroll-behavior: smooth;

        padding:
            10px 5px 20px;
    }


    /* =================================
       CARD MOBILE
    ================================= */

    .card {
        min-width: 100%;

        width: 100%;

        flex: 0 0 100%;

        border-radius: 16px;
    }

    .card img {
        width: 100%;

        height: 210px;

        object-fit: cover;
    }

    .card h3 {
        font-size: 19px;

        margin:
            18px 10px;
    }

    .card a {
        width: 90%;

        padding: 13px;

        font-size: 14px;
    }


    /* =================================
       SETAS MOBILE
    ================================= */

    .carousel-btn {
        display: flex;

        width: 42px;
        height: 42px;

        font-size: 18px;

        z-index: 100;
    }

    .carousel-btn.prev {
        left: -5px;
    }

    .carousel-btn.next {
        right: -5px;
    }


    /* =================================
       LOCALIZAÇÃO
    ================================= */

    .lojas {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .loja {
        width: 100%;

        padding: 15px;

        border-radius: 16px;
    }

    .loja h3 {
        font-size: 18px;
    }

    .loja iframe {
        width: 100%;

        height: 220px;
    }


    /* =================================
       CONTATO
    ================================= */

    .contato p {
        font-size: 14px;

        line-height: 1.6;
    }


    /* =================================
       BOTÕES CONTATO
    ================================= */

    .btn-contato,
    .btn-instagram {
        display: flex;

        width: 100%;

        max-width: 400px;

        margin:
            12px auto;

        padding: 15px;

        font-size: 14px;
    }


    /* =================================
       WHATSAPP FLUTUANTE
    ================================= */

    .whatsapp-float {
        width: 58px;
        height: 58px;

        right: 15px;
        bottom: 15px;

        font-size: 28px;
    }

}


/* =====================================
   CELULAR PEQUENO
===================================== */

@media screen and (max-width: 480px) {

    header {
        height: 65px;

        min-height: 65px;

        padding:
            8px 12px;
    }


    .logo img {
        height: 45px;
    }


    .menu-toggle {
        width: 42px;

        height: 42px;

        font-size: 28px;
    }


    nav ul li a {
        font-size: 13px;

        padding:
            13px 15px;
    }


    .banner {
    margin-top: 65px;

    width: 100%;

    height: auto;

    aspect-ratio: auto;

    min-height: 0;
}


    .banner-content {
        padding: 10px;

        justify-content: center;
    }


    .btn-banner {
        max-width: 280px;

        min-height: 44px;

        padding:
            9px 12px;

        font-size: 12px;

        gap: 6px;
    }


    .btn-banner img {
        width: 21px;

        height: 21px;
    }


    /* TÍTULOS */

    section h2 {
        font-size: 22px;

        margin-bottom: 30px;
    }


    /* CARDS */

    .card {
        min-width: 100%;

        width: 100%;

        flex-basis: 100%;

        border-radius: 14px;
    }

    .card img {
        height: 180px;
    }

    .card h3 {
        font-size: 17px;

        margin:
            16px 8px;
    }

    .card a {
        width: 90%;

        padding: 12px;

        font-size: 13px;
    }


    /* SETAS */

    .carousel-btn {
        width: 38px;

        height: 38px;

        font-size: 16px;
    }

    .carousel-btn.prev {
        left: -2px;
    }

    .carousel-btn.next {
        right: -2px;
    }


    /* LOCALIZAÇÃO */

    .loja {
        padding: 12px;

        border-radius: 14px;
    }

    .loja h3 {
        font-size: 17px;

        margin-bottom: 12px;
    }

    .loja iframe {
        height: 200px;

        border-radius: 10px;
    }

    .loja a {
        padding: 11px;

        font-size: 13px;
    }


    /* CONTATO */

    .contato p {
        font-size: 13px;
    }

    .btn-contato,
    .btn-instagram {
        width: 100%;

        padding: 14px;

        font-size: 13px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 12px;
        bottom: 12px;

        font-size: 25px;
    }

}


/* =====================================
   CELULAR MUITO PEQUENO
===================================== */

@media screen and (max-width: 360px) {

    header {
        height: 60px;

        min-height: 60px;
    }


    .logo img {
        height: 40px;
    }


    .menu-toggle {
        width: 38px;

        height: 38px;

        font-size: 26px;
    }


    nav ul li a {
        padding:
            12px 10px;

        font-size: 12px;
    }


    .banner {
        margin-top: 60px;
    }


    .btn-banner {
        max-width: 250px;

        font-size: 11px;
    }


    section h2 {
        font-size: 20px;
    }


    .card img {
        height: 160px;
    }


    .card h3 {
        font-size: 16px;
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }

}
