:root{
    --primary:#12B4B6;
    --dark:#1e293b;
    --gray:#64748b;
    --light:#f8fafc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:white;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

header{
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:40px;
    width:auto;
    display:block;
}

.menu{
    display:flex;
    gap:35px;
    align-items:center;
}

.menu a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--primary);
}

/* HERO HOME */

.hero{
    background:white;
    padding:0;
}

.hero-banner{
    width:100%;
    display:block;
}

.hero-content{
    max-width:900px;
    margin:60px auto;
    text-align:center;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
    color:var(--gray);
}

/* BOTÕES */

.btn{
    display:inline-block;
    background:var(--primary);
    color:white !important;
    padding:16px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* SEÇÕES */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:60px;
}

.section-subtitle{
    max-width:780px;
    margin:-35px auto 45px;
    text-align:center;
    color:var(--gray);
    font-size:18px;
    line-height:1.7;
}

.section-tag{
    display:block;
    width:max-content;
    margin:0 auto 14px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(18,180,182,.12);
    color:var(--primary);
    font-size:14px;
    font-weight:700;
}

/* PÁGINA PRODUTOS */

.products-hero{
    width:100%;
    height:420px;
    overflow:hidden;
    background:#fff;
}

.products-banner{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover !important;
    object-position:left center;
}

.product-categories-section{
    padding:70px 0 50px;
    background:#fff;
}

.product-categories-section .section-title{
    margin-bottom:35px;
}

.product-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.product-tab{
    appearance:none;
    border:1px solid #e2e8f0;
    background:#fff;
    color:var(--dark);
    padding:13px 24px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    font-family:'Poppins',sans-serif;
    box-shadow:0 6px 18px rgba(15,23,42,.08);
    transition:.3s;
}

.product-tab:hover,
.product-tab.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-3px);
}

/* ECOSSISTEMA HOME */

.ecosystem-section{
    background:#fff;
    padding-top:70px;
}

.ecosystem-tabs{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin:-25px 0 40px;
}

.eco-tab{
    border:1px solid #e2e8f0;
    background:#fff;
    color:var(--dark);
    padding:13px 24px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    font-family:'Poppins',sans-serif;
    box-shadow:0 6px 18px rgba(15,23,42,.08);
    transition:.3s;
}

.eco-tab:hover,
.eco-tab.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-3px);
}

.ecosystem-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    max-width:1100px;
    margin:0 auto;
    padding:45px;
    border-radius:30px;
    background:linear-gradient(135deg,#f8fafc,#eefafa);
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.eco-image{
    background:white;
    border-radius:26px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:360px;
}

.eco-image img{
    width:100%;
    max-height:320px;
    object-fit:contain;
}

.eco-content{
    text-align:left;
}

.eco-content h3{
    font-size:40px;
    line-height:1.15;
    margin-bottom:18px;
}

.eco-content p{
    color:var(--gray);
    font-size:18px;
    line-height:1.7;
    margin-bottom:22px;
}

.eco-content ul{
    list-style:none;
    margin:0 0 28px;
    padding:0;
}

.eco-content li{
    margin-bottom:12px;
    font-weight:600;
}

.eco-content li::before{
    content:"✓";
    color:var(--primary);
    font-weight:700;
    margin-right:10px;
}

.eco-label{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    margin-bottom:12px;
}

/* INTERRUPTORES TECLA FÍSICA */

.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
    width:90%;
    max-width:1300px;
    margin:45px auto 0;
}

.category{
    background:white;
    padding:34px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
    border:1px solid #eef2f7;
}

.category:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.category-icon{
    width:58px;
    height:58px;
    margin:0 auto 18px;
    border-radius:18px;
    background:rgba(18,180,182,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.category h3{
    font-size:19px;
    margin-bottom:10px;
}

.category p{
    color:var(--gray);
    font-size:15px;
    line-height:1.7;
}

/* COMPATIBILIDADE */

.compatibility-section{
    background:#fff;
}

.compatibility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.compatibility-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:24px;
    padding:32px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
}

.compatibility-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.compatibility-card img{
    width:120px;
    height:70px;
    object-fit:contain;
    margin-bottom:25px;
}

.compatibility-card h3{
    font-size:21px;
    margin-bottom:10px;
}

.compatibility-card p{
    color:var(--gray);
    line-height:1.7;
    font-size:15px;
}

/* DIFERENCIAIS */

.why-jwcom{
    background:#f8fafc;
}

.why-jwcom .section-title{
    margin-bottom:45px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature{
    background:white;
    padding:32px;
    border-radius:22px;
    text-align:left;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.feature-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:rgba(18,180,182,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.feature h3{
    font-size:20px;
    margin-bottom:10px;
}

.feature p{
    color:var(--gray);
    line-height:1.7;
    font-size:15px;
}

/* FOOTER */

footer{
    background:#12B4B6;
    color:white;
    text-align:center;
    padding:60px 20px;
}

.footer-content h3{
    margin-bottom:10px;
    font-size:28px;
}

.footer-content p{
    margin-bottom:15px;
}

.social-links{
    margin:25px 0;
}

.social-links a{
    width:65px;
    height:65px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin:0 10px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-4px);
}

.social-links .fa-instagram{ color:#E4405F; }
.social-links .fa-facebook{ color:#1877F2; }
.social-links .fa-youtube{ color:#FF0000; }

.endereco a,
.endereço a{
    color:white !important;
    text-decoration:none !important;
}

.endereco a:hover,
.endereço a:hover{
    color:white !important;
    text-decoration:underline !important;
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}


/* LISTAGEM DE PRODUTOS DO PORTFÓLIO */

.product-list-section{
    padding:80px 0;
    background:#f8fafc;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.portfolio-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    border:1px solid #eef2f7;
    transition:.3s;
}

.portfolio-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.portfolio-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    object-position:center !important;
    display:block;
    padding:18px;
    background:#fff;
}

.portfolio-content{
    padding:24px;
}

.portfolio-content h3{
    font-size:18px;
    line-height:1.35;
    margin-bottom:10px;
}

.portfolio-content p{
    color:var(--gray);
    font-size:14px;
    line-height:1.6;
    margin-bottom:16px;
}

.portfolio-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
}

.portfolio-tags span{
    background:rgba(18,180,182,.12);
    color:var(--primary);
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.btn-product{
    display:block;
    width:100%;
    text-align:center;
    background:var(--primary);
    color:white;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    margin-top:15px;
    transition:.3s;
}

.btn-product:hover{
    opacity:.9;
    transform:translateY(-2px);
}

/* ALINHAMENTO DOS CARDS DE PRODUTO */

.portfolio-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.portfolio-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.portfolio-tags{
    margin-bottom:20px;
}

.btn-product{
    margin-top:auto;
}


/* ABAS / CATEGORIAS DA PÁGINA PRODUTOS */

.product-category-content{
    display:none;
}

.product-category-content.active{
    display:block;
}

/* RESPONSIVO */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:15px 0;
    }

    .menu{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
        margin-top:15px;
    }

    .hero-content{
        margin:40px auto;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section{
        padding:60px 0;
    }

    .section-title{
        font-size:32px;
        margin-bottom:40px;
    }

    .products-hero{
        height:220px;
    }

    .product-tabs{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:12px;
    }

    .product-tab{
        white-space:nowrap;
        padding:11px 18px;
        font-size:14px;
    }

    .ecosystem-showcase{
        grid-template-columns:1fr;
        padding:25px;
        gap:30px;
    }

    .eco-content{
        text-align:center;
    }

    .eco-content h3{
        font-size:30px;
    }

    .eco-image{
        min-height:260px;
        padding:20px;
    }

    .categories{
        grid-template-columns:1fr;
    }

    .feature{
        text-align:center;
    }

    .feature-icon{
        margin:0 auto 18px;
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .portfolio-card img{
        height:180px;
        padding:14px;
    }

    .portfolio-content{
        padding:18px;
    }

    .portfolio-content h3{
        font-size:16px;
    }

    .portfolio-content p{
        font-size:13px;
    }

    .social-links a{
        width:55px;
        height:55px;
        font-size:30px;
    }
}

/* PÁGINA SOBRE NÓS */

.about-banner{
    width:100%;
    height:340px !important;
    overflow:hidden;
}

.about-banner img{
    width:100%;
    height:100% !important;
    object-fit:cover;
    object-position:center;
    display:block;
}

.about-history{
    padding:80px 0;
    background:#fff;
}

.about-box{
    max-width:900px;
    text-align:center;
}

.about-box h2{
    font-size:42px;
    margin-bottom:25px;
}

.about-box p{
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

.about-values{
    padding:80px 0;
    background:#f8fafc;
}

.about-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.about-card{
    background:white;
    border:1px solid #eef2f7;
    border-radius:26px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-7px);
}

.about-icon{
    font-size:42px;
    margin-bottom:18px;
}

.about-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.about-card p{
    color:var(--gray);
    line-height:1.7;
}

.about-numbers{
    padding:80px 0;
    background:white;
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.number-card{
    background:#fff;
    border-radius:24px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    border:1px solid #eef2f7;
}

.number-card strong{
    display:block;
    font-size:42px;
    color:var(--primary);
    margin-bottom:10px;
}

.number-card span{
    color:var(--gray);
    font-weight:600;
}

.about-differentials{
    padding:80px 0;
    background:#f8fafc;
}

.differentials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.differential-item{
    background:white;
    border:1px solid #eef2f7;
    border-radius:18px;
    padding:22px;
    font-weight:600;
    box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.about-closing{
    padding:90px 0;
    background:white;
    text-align:center;
}

.about-closing h2{
    font-size:42px;
    margin-bottom:22px;
}

.about-closing p{
    max-width:850px;
    margin:auto;
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
}

@media(max-width:768px){
    .about-banner{
        height:220px !important;
    }

    .about-box h2,
    .about-closing h2{
        font-size:32px;
    }

    .about-cards,
    .numbers-grid,
    .differentials-grid{
        grid-template-columns:1fr;
    }
}


/* PÁGINA SUPORTE */

.support-page{
    background:#f8fafc;
    padding:80px 0;
}

.support-header{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.support-header h1{
    font-size:52px;
    margin:18px 0;
}

.support-header p{
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
}

.support-page .section-title{
    max-width:1000px;
    margin:0 auto 45px;
    text-align:center;
    font-size:36px;
    line-height:1.35;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

.support-card{
    background:white;
    border:1px solid #eef2f7;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.3s;
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.support-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.support-icon{
    font-size:38px;
    margin-bottom:18px;
}

.support-card h3{
    font-size:20px;
    margin-bottom:10px;
    line-height:1.35;
}

.support-card p{
    color:var(--gray);
    font-size:15px;
    line-height:1.7;
}

.support-faq{
    max-width:900px;
    margin:0 auto 80px;
}

.faq-item{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:18px;
    padding:24px;
    margin-bottom:16px;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

.faq-item h3{
    font-size:19px;
    margin-bottom:8px;
}

.faq-item p{
    color:var(--gray);
    line-height:1.7;
}

.support-contact-header{
    max-width:850px;
    margin:80px auto 50px;
    text-align:center;
}

.support-contact-header h2{
    font-size:48px;
    margin:15px 0;
    color:var(--dark);
}

.support-contact-header p{
    max-width:720px;
    margin:0 auto;
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
}

.support-contact{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:80px;
}

.contact-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:28px;
    padding:40px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.contact-card h3{
    margin:15px 0 10px;
    font-size:26px;
}

.contact-card p{
    color:var(--gray);
    margin-bottom:25px;
    line-height:1.7;
}

.contact-card .btn{
    margin-top:auto;
}

/* RESPONSIVO SUPORTE */

@media(max-width:768px){
    .support-page{
        padding:50px 0;
    }

    .support-header{
        margin-bottom:40px;
    }

    .support-header h1{
        font-size:36px;
        line-height:1.2;
    }

    .support-header p{
        font-size:16px;
    }

    .support-page .section-title{
        font-size:25px;
        line-height:1.35;
        margin-bottom:28px;
    }

    .support-grid{
        grid-template-columns:1fr !important;
        gap:18px;
        margin-bottom:55px;
    }

    .support-card{
        min-height:auto;
        padding:26px 20px;
    }

    .support-icon{
        font-size:34px;
        margin-bottom:14px;
    }

    .support-faq{
        margin-bottom:60px;
    }

    .faq-item{
        padding:20px;
    }

    .support-contact-header{
        margin:60px auto 35px;
        padding:0 10px;
    }

    .support-contact-header h2{
        font-size:32px;
    }

    .support-contact-header p{
        font-size:16px;
        line-height:1.7;
    }

    .support-contact{
        grid-template-columns:1fr !important;
        gap:20px;
        margin-bottom:50px;
    }

    .contact-card{
        padding:28px 20px;
    }
    /* SLIDER HOME */

.hero-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#45BFC5;
}

.hero-slide{
    display:none;
}

.hero-slide.active{
    display:block;
}

.hero-slide a{
    display:block;
}

.hero-slide img{
    width:100%;
    height:auto;
    display:block;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    color:#12B4B6;
    font-size:38px;
    line-height:1;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.slider-btn:hover{
    background:white;
    transform:translateY(-50%) scale(1.08);
}

.slider-prev{
    left:25px;
}

.slider-next{
    right:25px;
}

.slider-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.dot{
    width:11px;
    height:11px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,.5);
    cursor:pointer;
}

.dot.active{
    background:white;
}

@media(max-width:768px){
    .slider-btn{
        width:36px;
        height:36px;
        font-size:30px;
    }

    .slider-prev{
        left:10px;
    }

    .slider-next{
        right:10px;
    }

    .slider-dots{
        bottom:10px;
    }

    .dot{
        width:8px;
        height:8px;
    }
}
}

