*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Bould, sans-serif;
    background: #000;
    color: #fff;
}

/* ===== HEADER MENU PREMIUM ===== */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    background:rgba(0,0,0,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    z-index:9999;
}

.logo{
    height:45px;
    width:auto;
}

/* BOTÃO */
.menu-toggle{
    width:40px;
    height:30px;
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:0;
}

.menu-toggle span{
    width:100%;
    height:4px;
    background:#fff;
    border-radius:4px;
    display:block;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(13px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-13px) rotate(-45deg);
}

/* MENU LATERAL */
nav{
    position:fixed;
    top:0;
    right:-280px;
    width:260px;
    height:100vh;
    background:#111;
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:100px 30px;
    transition:.35s ease;
    z-index:9998;
}

nav.show{
    right:0;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    margin:0;
}

nav a:hover{
    color:#f5c518;
}

/* HERO */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('images/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    background: rgba(255,255,255,0.06);
    padding: 50px;
    border-radius: 18px;
    max-width: 600px;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero span {
    color: #ffff;
}

.hero p {
    font-size: 18px;
    color: #ddd;
}

.hero{
    padding-top:80px;
}

/* BOTÃO */
.btn {
    display: inline-block;
    background: #f5c518;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245,197,24,0.25);
}

/* SEÇÕES */
.produtos, .portfolio, .diferenciais {
    padding: 70px 50px;
}

h2 {
    margin-bottom: 30px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    padding: 20px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 14px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #f5c518;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* GALERIA */
.galeria {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.galeria img {
    width: calc(33.33% - 7px);
    border-radius: 12px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #111, #000);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #222;
    color: #aaa;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* MOBILE */
@media(max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero {
        padding: 20px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .overlay {
        padding: 30px;
    }

    .galeria img {
        width: 100%;
    }
}

/* TEXTOS MAIS PARA CIMA */
.parceiros h2{
    margin-bottom: 8px;
    text-align:center;
    transform: translateY(-25px);
}

.parceiros p{
    margin-bottom: 30px;
    text-align:center;
    transform: translateY(-20px);
}

.slider {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.slide-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
    gap: 40px;
    align-items: center;
}

.slide-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 28px;
    opacity: 0.9;
}

.slide-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5));
    }
}
.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 50px;
    background: #000;
    color: #fff;
    flex-wrap: wrap;
    gap: 40px;
}

.sobre-texto {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-texto h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #fff;
}

.sobre-texto p {
    color: #ddd;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 18px;
}

.sobre-img img {
    width: 85%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}


.contato {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 80px 30px;
}

.contato h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.info-contato {
    max-width: 800px;
    margin: 0 auto 30px;
}

.info-contato p {
    font-size: 18px;
    margin: 14px 0;
    color: #ddd;
    line-height: 1.8;
}

.info-contato a {
    color: #f5c518;
    text-decoration: none;
}

.info-contato a:hover {
    text-decoration: underline;
}


nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f5c518;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.insta {
    margin-right: 10px;
}

.insta img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: 0.3s;
}

.insta img:hover {
    transform: scale(1.18);
}

@media(max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin: 0;
    }
}

.diferencial {
    text-align: center;
    padding: 35px 20px;
}

.icon {
    font-size: 42px;
    color: #f5c518;
    margin-bottom: 18px;
}

.diferencial h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.diferencial:hover .icon {
    transform: scale(1.12);
    transition: 0.3s;
}

.desc {
    font-family: Bould light;
    font-size: 22px;
    color: #fff;
    margin-top: 12px;
    line-height: 1.6;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* BASE */
.hero-produto {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

/* COPO FRENTE */
.copo1{
    width: 1000px;
    right: 14%;
    top: 50%;
    z-index: 6;
    opacity: 1;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
}

/* ENTRADAS */
@keyframes entrar1 {
    0% {
        right: -500px;
        opacity: 0;
        transform: translateY(-50%) rotate(8deg) scale(0.8);
    }
    100% {
        right: 8%;
        opacity: 1;
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
}

/* FLUTUAR */
@keyframes flutuar1 {
    0%,100% { transform: translateY(-50%); }
    50% { transform: translateY(-53%); }
}

/* CELULAR */
@media(max-width:900px){
.slide-track img{
    height: 42px;
    margin: 0 18px;
}
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.8s ease;
}

.slider-track img {
    width: 580px;
    height: 980px;
    object-fit: contain;
    background: #111;
    border-radius: 18px;
    flex-shrink: 0;
    padding: 8px;
}

/* BOTÕES */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 28px;
    transition: 0.3s;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.prev:hover,
.next:hover {
    background: rgba(245,197,24,0.9);
    color: #000;
    transform: translateY(-50%) scale(1.08);
}

@media(max-width: 900px){
    .slider-track img{
        width: 90vw;
        height: auto;
    }
}

/* =========================
   RESPONSIVO CELULAR
========================= */
@media (max-width: 900px) {

    body {
        overflow-x: hidden;
    }

    /* HEADER */
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin: 0;
        font-size: 15px;
    }

    /* HERO */
    .hero {
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }

    .overlay {
        max-width: 100%;
        padding: 30px 20px;
        margin: auto;
    }

    .hero h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        display: inline-block;
        text-align: center;
    }

    /* ESCONDE PRODUTOS DO TOPO */
    .hero-produto {
        display: none;
    }

    /* SOBRE */
    .sobre {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }

    .sobre-texto,
    .sobre-img {
        width: 100%;
    }

    .sobre-img img {
        width: 100%;
        max-width: 100%;
        margin-top: 25px;
    }

    /* CARDS */
    .cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
    }

    /* PORTFÓLIO */
    .slider-track img {
        width: 90vw;
        height: auto;
    }

    .prev,
    .next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    /* PARCEIROS */
    .slide-track img {
        height: 50px;
        margin: 0 20px;
    }

    /* CONTATO */
    .contato {
        padding: 50px 20px;
        text-align: center;
    }

    .info-contato p {
        font-size: 15px;
    }

    /* FOOTER */
    footer {
        padding: 25px 15px;
        font-size: 14px;
        text-align: center;
    }

    /* WHATSAPP */
    .whatsapp {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* PORTFÓLIO MOBILE CORRIGIDO */
@media (max-width: 900px) {

    .portfolio {
        padding: 50px 15px;
    }

    .slider-container {
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
    }

    .slider-track {
        gap: 12px;
    }

    .slider-track img {
        width: 85vw;
        height: auto;
        max-height: 75vh;
        object-fit: contain;
        border-radius: 14px;
        padding: 0;
        background: transparent;
        margin: auto;
    }

    .prev,
    .next {
        width: 38px;
        height: 38px;
        font-size: 18px;
        top: 50%;
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(4px);
    }

    .prev { left: 8px; }
    .next { right: 8px; }

    .portfolio h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/* ESCONDER FOTO 6 NO CELULAR */
@media (max-width: 900px) {

    #sliderTrack img:nth-child(6) {
        display: none;
    }

}

.logo-grande{
    height: 115px !important;
    width: auto;
}

/* ===== CORRIGIR TEXTO PARCEIROS ===== */
.parceiros h2,
.parceiros p{
    position: relative;
    left: 0;
    transform: none !important;
    margin: 0 0 15px 0;
    padding: 0 50px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.parceiros h2{
    font-size: 42px;
}

.parceiros p{
    font-size: 22px;
    color: #fff;
}

@media(max-width:900px){

    .parceiros h2,
    .parceiros p{
        padding: 0 20px;
        left: 0;
        width: 100%;
    }

    .parceiros h2{
        font-size: 24px;
    }

    .parceiros p{
        font-size: 15px;
    }

}

/* AJUSTE DEFINITIVO SEÇÃO PARCEIROS */
.parceiros{
    width: 100%;
    padding: 80px 0 60px;
    overflow: hidden;
}

.parceiros .container-texto{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.parceiros h2,
.parceiros p{
    margin: 0 0 15px 0;
    padding: 0;
    text-align: left;
}

/* CENTRALIZAR TEXTOS PARCEIROS */
.parceiros .container-texto{
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 50px;
    text-align: center;
}

.parceiros h2,
.parceiros p{
    text-align: center;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.parceiros h2{
    font-size: 42px;
    margin-bottom: 12px;
}

.parceiros p{
    font-size: 22px;
    max-width: 1000px;
}

@media(max-width:900px){

.parceiros .container-texto{
    padding: 0 20px;
}

.parceiros h2{
    font-size: 24px;
}

.parceiros p{
    font-size: 15px;
}

}

/* ===== MOBILE OTIMIZADO ===== */
@media(max-width:900px){

html,body{
    overflow-x:hidden;
}

header{
    flex-direction:column;
    gap:15px;
    padding:15px 20px;
    text-align:center;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

nav a{
    margin:0;
    font-size:15px;
}

section,
.produtos,
.portfolio,
.diferenciais,
.sobre,
.contato,
.parceiros{
    padding:50px 20px;
    width:100%;
    margin:0 auto;
}

.hero{
    padding:40px 20px;
    min-height:auto;
    text-align:center;
}

.overlay{
    padding:30px 20px;
    max-width:100%;
    margin:auto;
}

.hero h2{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

.hero-produto{
    display:none;
}

.cards{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.card{
    width:100%;
    max-width:340px;
    margin:0 auto;
}

.produtos h2,
.portfolio h2,
.diferenciais h2,
.parceiros h2,
.contato h2,
.sobre h2{
    font-size:24px;
    text-align:center;
}

.slider-track{
    gap:12px;
}

.slider-track img{
    width:85vw;
    height:auto;
    max-height:75vh;
    padding:0;
    background:transparent;
}

.prev,.next{
    width:38px;
    height:38px;
    font-size:18px;
}

.slide-track img{
    height:42px;
    margin:0 18px;
}

.parceiros p,
.info-contato p,
.hero p{
    font-size:15px;
}

.whatsapp{
    right:15px;
    bottom:15px;
    padding:12px 16px;
    font-size:14px;
}

/* CORRIGIR TEXTO DOS CARDS NO CELULAR */
@media(max-width:900px){

.diferenciais .card p{
    font-family: Bould;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    text-align: center;
}

.diferenciais .card h3{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* MENU PREMIUM */
.menu-toggle{
    width:42px;
    height:34px;
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:0;
    z-index:1001;
}

.menu-toggle span{
    display:block;
    height:4px;
    width:100%;
    background:#fff;
    border-radius:4px;
    transition:.35s;
}

/* animação vira X */
.menu-toggle.active span:nth-child(1){
    transform:translateY(15px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:translateY(-15px) rotate(-45deg);
}

/* MENU LATERAL */
nav{
    position:fixed;
    top:0;
    right:-320px;
    width:280px;
    height:100vh;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(12px);
    display:flex;
    flex-direction:column;
    padding:100px 30px;
    gap:18px;
    transition:.4s ease;
    z-index:1000;
}

nav.show{
    right:0;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

nav a:hover{
    color:#f5c518;
}

/* MENU MOBILE CORRETO */
@media(max-width:900px){

header{
    height:75px;
    padding:0 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
}

.logo{
    height:38px;
    width:auto;
    margin:0;
}

.menu-toggle{
    width:34px;
    height:26px;
    margin:0;
}

nav{
    right:-280px;
    top:75px;
}

}

/* BOTÃO FALE COM ESPECIALISTA - LIQUID GLASS */
.btn-glass{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:18px;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:.3px;
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.22);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.22);

    transition:all .35s ease;
}

/* brilho passando */
.btn-glass::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s ease;
}

.btn-glass:hover::before{
    left:140%;
}

.btn-glass:hover{
    transform:translateY(-3px) scale(1.02);
    background:rgba(255,255,255,0.12);
    box-shadow:
        0 14px 30px rgba(0,0,0,0.30),
        0 0 18px rgba(255,255,255,0.10);
}

/* FORÇAR BOTÃO TRANSPARENTE */
.btn-glass{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    padding:16px 34px !important;
    border-radius:18px !important;
    text-decoration:none !important;

    color:#fff !important;
    font-size:18px !important;
    font-weight:700 !important;

    background:rgba(255,255,255,0.08) !important;
    border:1px solid rgba(255,255,255,0.22) !important;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.22);

    transition:.35s ease;
}

.btn-glass:hover{
    background:rgba(255,255,255,0.14) !important;
    color:#fff !important;
    transform:translateY(-3px);
}

/* LIQUID GLASS FORÇADO EM QUALQUER LUGAR */
a.btn-glass,
.btn.btn-glass,
.hero .btn-glass,
.overlay .btn-glass{
    background:rgba(255,255,255,0.08) !important;
    color:#fff !important;
    border:1px solid rgba(255,255,255,0.22) !important;

    backdrop-filter:blur(14px) !important;
    -webkit-backdrop-filter:blur(14px) !important;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.22) !important;

    text-decoration:none !important;
}

/* hover */
a.btn-glass:hover,
.btn.btn-glass:hover,
.hero .btn-glass:hover{
    background:rgba(255,255,255,0.14) !important;
    color:#fff !important;
    transform:translateY(-3px);
}