/*PROMÁQUINAS*/

:root{

    --primary:#f97316;
    --primary-dark:#d95f02;
    --primary-light:#fff4ed;
    --secondary:#ff8c42;

    --white:#ffffff;
    --background:#fffaf6;

    --text:#222;
    --text-light:#666;

    --shadow:0 15px 35px rgba(249,115,22,.15);

    --radius:18px;

}

/*RESET*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(
        180deg,
        #ffffff,
        #fffaf5
    );

    color:var(--text);

    line-height:1.6;

}

img{

    display:block;
    width:100%;
    max-width:100%;
    height:auto;

}
.container{

    width:min(95%,1200px);
    margin:0 auto;
    padding:0 15px;

}

/*HEADER*/

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:url("/imagens/HEADER.png") center/cover no-repeat;

    backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;

}

.logo img{

    height:65px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    text-decoration:none;
    color:#333;
    font-weight:600;
    position:relative;
    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:3px;

    background:var(--primary);

    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

nav a:hover::after{

    width:100%;

}

.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

}

/*HERO*/

.hero{

    position:relative;

    min-height:100svh;

    display:flex;
    align-items:center;

    background:

        linear-gradient(
            rgba(255,255,255,.10),
            rgba(255,255,255,.10)
        ),

        url("images/fundo.png");

    background-size:cover;
    background-position:center;

}

.hero-grid{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    flex-wrap:wrap;

}

.hero-text{

    flex:1;
    min-width:300px;
    max-width:600px;

}

.hero-slide{

    display:none;

    animation:heroFade .6s ease;

}

.hero-slide.active{

    display:block;

}

.hero h1{

    font-size:55px;

    margin-bottom:20px;

    color:#222;

}

.hero p{

    font-size:20px;

    color:#555;

    margin-bottom:35px;

}

.hero-image img{

    width:100%;
    max-width:450px;
    margin:auto;

    border-radius:25px;

    box-shadow:var(--shadow);

    transition:.5s;

}

.hero-image img:hover{

    transform:scale(1.03);

}

/*SETA HERO*/

.hero-arrow{

    position:absolute;

    right:50px;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.hero-arrow:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-50%) scale(1.1);

}

.hero-arrow i{

    font-size:22px;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*MARCAS (CARROSSEL)*/

.brands{

    padding:100px 0;

    background:white;

}

.brands h2{

    text-align:center;

    font-size:42px;

    color:var(--primary-dark);

    margin-bottom:60px;

}

.brand-slider{

    display:flex;

    align-items:center;

    gap:20px;

}

.brand-container{

    overflow:hidden;

    flex:1;

}

.brand-track{

    display:flex;

    transition:.5s ease;

}

.brand-item{

    min-width:25%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.brand-item img{

    max-width:180px;

    max-height:90px;

    object-fit:contain;

    transition:.3s;

}

.brand-item img:hover{

    transform:scale(1.08);

}

.brand-arrow{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    cursor:pointer;

    transition:.3s;

}

.brand-arrow:hover{

    background:var(--primary);

    color:white;

}

.brand-arrow i{

    font-size:20px;

}
/*BOTÕES*/

.btn{

    display:inline-block;

    padding:16px 38px;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(249,115,22,.35);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(249,115,22,.40);

}

/*SERVIÇOS*/

.services{

    padding:100px 0;

    background:var(--primary-light);

}

.services h2{

    text-align:center;

    font-size:42px;

    color:var(--primary-dark);

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:white;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    border-top:5px solid var(--primary);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(249,115,22,.22);

}

.card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

    color:var(--primary-dark);

}

.card p{

    color:var(--text-light);

}
.card img{

    width:100%;
    height:220px;          
    object-fit:contain;    
    object-position:center;
    border-radius:12px;
    margin-bottom:20px;
    background:#fff;
}

.card .btn{

    margin-top:20px;

}

/*SOBRE*/

.about{

    padding:110px 0;

    background:#fffaf7;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about img{

    border-radius:22px;

    box-shadow:var(--shadow);

}

.about h2{

    color:var(--primary-dark);

    font-size:42px;

    margin-bottom:20px;

}

.about p{

    font-size:17px;

    color:var(--text-light);

    line-height:1.9;

}

/*CONTACTOS*/

.contact{

    padding:100px 0;

    background:white;

}

.contact h2{

    text-align:center;

    color:var(--primary-dark);

    margin-bottom:60px;

    font-size:42px;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.contact p{

    margin-bottom:18px;

    font-size:18px;

    color:#555;

}

.contact i{

    color:var(--primary);

    width:28px;

}

iframe{

    width:100%;

    height:380px;

    border:none;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.whatsapp{

    margin-top:25px;

    background:#25D366;

}

.whatsapp:hover{

    background:#1eb95a;

}

.facebook{

    margin-top:15px;

    background:#1877F2;

}

.facebook:hover{

    background:#166FE5;

}

/*FOOTER*/

footer{

    background:#222;

    color:white;

    text-align:center;

    padding:35px;

    font-size:15px;

}

/*BOTÃO TOPO*/

#topBtn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

    transition:.3s;

    box-shadow:0 10px 25px rgba(249,115,22,.35);

}

#topBtn:hover{

    transform:scale(1.1);

}

/*EFEITOS GLOBAIS*/

::selection{

    background:var(--primary);

    color:white;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#fff4ed;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*RESPONSIVO TABLET*/

@media(max-width:991px){

    .hero-grid,
    .about-grid,
    .contact-grid{

        display:grid;

        grid-template-columns:1fr;

        text-align:center;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

    .brand-item{

        min-width:50%;

    }

    .hero h1{

        font-size:42px;

    }

    .hero-image img{

        width:350px;

        margin:auto;

    }

}

/*RESPONSIVO MOBILE*/

@media(max-width:768px){

    .menu-btn{

        display:block;

    }

    nav{

        position:absolute;

        top:85px;

        left:0;

        width:100%;

        background:white;

        display:none;

        flex-direction:column;

        gap:20px;

        padding:30px;

        box-shadow:0 10px 30px rgba(0,0,0,.1);

    }

    nav.active{

        display:flex;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .brand-item{

        min-width:100%;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:17px;

    }

    .hero-arrow{

        right:15px;

        width:50px;

        height:50px;

    }

    .brand-arrow{

        width:45px;

        height:45px;

    }

    iframe{

        height:280px;

    }

}

/*RESPONSIVO MOBILE PEQUENO*/

@media(max-width:480px){

    .container{

        width:92%;

    }

    .hero{

        padding-top:120px;

        padding-bottom:70px;

    }

    .hero h1{

        font-size:28px;

    }

    .btn{

        width:100%;

        text-align:center;

    }

    .services,
    .brands,
    .about,
    .contact{

        padding:70px 0;

    }

}

@media (max-width:430px){

    .hero h1{
        font-size:26px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-image img{
        width:100%;
    }

    .btn{
        width:100%;
    }

}
/*PÁGINAS DOS PRODUTOS*/

.product-hero{

    padding:160px 0 100px;

    background:#fffaf6;

}

.product-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.product-text h1{

    font-size:52px;

    color:var(--primary-dark);

    margin-bottom:25px;

}

.product-text p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.product-image img{

    width:100%;

    max-width:550px;

    margin:auto;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.product-image img:hover{

    transform:scale(1.03);

}

@media(max-width:991px){

    .product-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .product-text h1{

        font-size:40px;

    }

}

/* Compatibilidade */

html{

    -webkit-text-size-adjust:100%;

}

body{

    overflow-x:hidden;

}

*{

    max-width:100%;

}

iframe{

    max-width:100%;

}

.hero-image,
.product-image{

    display:flex;
    justify-content:center;

}
/*COMPATIBILIDADE PHC*/

html,
body{

    width:100%;
    overflow-x:hidden;

}

.container{

    width:95%;
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;

}

img{

    max-width:100%;
    height:auto;

}

iframe{

    max-width:100%;

}

.hero,
.services,
.brands,
.about,
.contact{

    width:100%;

}