/* =========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Inter', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;

}

.container {

    width: min(1200px, 90%);
    margin: 0 auto;

}


/* =========================
   HEADER
========================== */

.header {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 25px 0;

}


.header .container {

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

}


.logo img {

    width: 150px;

}


nav ul {

    display: flex;
    gap: 35px;
    list-style: none;

}


nav a {

    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;

}


nav a:hover {

    opacity: .7;

}


.btn-whatsapp {

    background: #fff;
    color: #111;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;

}


.btn-whatsapp:hover {

    transform: translateY(-3px);

}


/* =========================
   HERO
========================== */

.hero {

    min-height: 100vh;
    background:

    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),

    url("/lp/media/hero.webp");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

}


.hero-content {

    max-width: 750px;
    color: white;

}


.subtitle {

    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 500;

}


.hero h1 {

    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;

}


.hero p {

    font-size: 20px;
    font-weight: 300;
    max-width: 650px;
    margin-bottom: 40px;

}


.hero-buttons {

    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}


.btn-primary {

    background: #111;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: .3s;

}


.btn-primary:hover {

    transform: translateY(-4px);

}


.btn-secondary {

    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    transition: .3s;

}


.btn-secondary:hover {

    background: #fff;
    color: #111;

}

/* =========================
   TITULOS DE SEÇÃO
========================== */

.section-title {

    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;

}

.section-title span,
.section-tag {

    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 18px;

}


.section-title h2 {

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 700;

}


/* =========================
   PRODUTOS
========================== */

.products {

    padding: 70px 0;

}


.products-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}


.card {

    background: #fff;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;

}


.card:hover {

    transform: translateY(-10px);

}


.card img {

    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;

}


.card:hover img {

    transform: scale(1.05);

}


.card-content {

    padding: 30px;

}


.card-content h3 {

    font-size: 22px;
    margin-bottom: 12px;

}


.card-content p {

    color: #666;
    font-size: 15px;

}


/* =========================
   SOBRE
========================== */

.about {

    padding: 70px;
    background: #f7f7f7;

}


.about-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;

}


.about-image img {

    width: 100%;
    height: 650px;
    object-fit: cover;

}


.about-content h2 {

    font-size: clamp(32px,4vw,50px);
    line-height: 1.15;
    margin-bottom: 30px;

}


.about-content p {

    color: #555;
    margin-bottom: 20px;
    font-size: 17px;

}


.about-features {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0;

}


.feature {

    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;

}


.feature i {

    width: 25px;
    height: 25px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;

}


/* =========================
   DIFERENCIAIS
========================== */

.advantages {

    padding: 70px 0;

}


.advantages-grid {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;

}


.advantage-card {

    padding: 40px 30px;
    background: #fff;
    border: 1px solid #eee;
    transition: .3s;

}


.advantage-card:hover {

    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transform: translateY(-8px);

}


.advantage-card .icon {

    font-size: 35px;
    margin-bottom: 25px;

}


.advantage-card h3 {

    margin-bottom: 15px;
    font-size: 21px;

}


.advantage-card p {

    color: #666;
    font-size: 15px;

}

/* =========================
   CTA FINAL
========================== */

.cta {

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("/lp/media/hero5.webp");

    background-size: cover;
    background-position: center;

    color: #fff;
    padding: 70px 0;
    text-align: center;

}


.cta span {

    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: .7;

}


.cta h2 {

    font-size: clamp(35px,5vw,60px);
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px;

}


.cta p {

    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,.75);
    font-size: 18px;

}


.cta .btn-primary {

    background: #fff;
    color: #111;

}


/* =========================
   FOOTER
========================== */

footer {

    background: #050505;
    color: #fff;
    padding: 60px 0 30px;

}


.footer-content {

    text-align: center;

}


.footer-content img {

    width: 150px;
    margin: 0 auto 25px;

}


.footer-content p {

    max-width: 500px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.6);

}


.footer-contact {

    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;

}


.footer-contact a {

    color: #fff;
    transition: .3s;

}


.footer-contact a:hover {

    opacity: .7;

}


.footer-copy {

    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 25px;
    color: rgba(255,255,255,.5);
    font-size: 14px;

}


/* =========================
   WHATSAPP FLUTUANTE
========================== */

.whatsapp-float {

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

    width: 60px;
    height: 60px;

    background: #25D366;
    color: white;

    border-radius: 50%;

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

    font-size: 28px;

    z-index: 99;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    transition: .3s;

}


.whatsapp-float:hover {

    transform: scale(1.1);

}


/* =========================
   ANIMAÇÕES
========================== */

.hero-content,
.card,
.about-content,
.advantage-card {

    animation: fadeUp .8s ease forwards;

}


@keyframes fadeUp {

    from {

        opacity: 0;
        transform: translateY(40px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}


/* =========================
   RESPONSIVO
========================== */

@media(max-width: 992px){


    nav {

        display:none;

    }


    .products-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .about-grid {

        grid-template-columns: 1fr;
        gap: 40px;

    }


    .about-image img {

        height:450px;

    }


    .advantages-grid {

        grid-template-columns: repeat(2,1fr);

    }


}



@media(max-width: 600px){


    .header {

        padding:20px 0;

    }


    .logo img {

        width:120px;

    }


    .btn-whatsapp {

        padding:12px 18px;
        font-size:13px;

    }


    .hero h1 {

        font-size:38px;

    }


    .hero p {

        font-size:16px;

    }


    .hero-buttons {

        flex-direction:column;

    }


    .btn-primary,
    .btn-secondary {

        text-align:center;
        width:100%;

    }


    .products,
    .about,
    .advantages,
    .cta {

        padding:80px 0;

    }


    .products-grid {

        grid-template-columns:1fr;

    }


    .about-features {

        grid-template-columns:1fr;

    }


    .advantages-grid {

        grid-template-columns:1fr;

    }


    .footer-contact {

        flex-direction:column;
        gap:15px;

    }


}

.hidden {

    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;

}


.show {

    opacity:1;
    transform:translateY(0);
}


/* ===========================
   ISO 9001
=========================== */

.iso-section{

    padding:70px 0;
    background:#1b1b1b;;

}

.iso-grid{

    display:grid;
    grid-template-columns:280px 1fr;
    gap:70px;
    align-items:center;

}

.iso-left{

    display:flex;
    justify-content:center;

}

.iso-left img{

    width:220px;
    max-width:100%;
    height:auto;
    display:block;

}

.iso-tag{

    display:inline-block;
    background:#C7A15A;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:20px;

}

.iso-right h2{

    font-size:38px;
    color:#fff;
    margin-bottom:15px;

}

.iso-divider{

    width:70px;
    height:4px;
    background:#C7A15A;
    margin-bottom:30px;
    border-radius:20px;

}

.iso-right p{

    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:18px;

}

@media(max-width:900px){

    .iso-grid{

        grid-template-columns:1fr;
        text-align:center;
        gap:40px;

    }

    .iso-divider{

        margin:25px auto;

    }

    .iso-right h2{

        font-size:30px;

    }

}