﻿:root{
  --primary:#ff5a00;
  --dark:#050505;
  --dark-2:#0d0d0d;
  --gray:#999;
  --border:#1f1f1f;
}

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

.skid-container{
  width:min(100% - 2rem, 1240px);
  margin-left:auto;
  margin-right:auto;
}


.skid-header{
  position:sticky;
  top:0;
  z-index:9999;
  backdrop-filter:blur(15px);
  background:rgba(5,5,5,.95);
  border-bottom:1px solid var(--border);
}

.skid-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:85px;
  gap:25px;
}

.skid-logo-link{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.header-logo{
  max-height:65px;
  width:auto;
  transition:.3s;
}

.header-logo:hover{
  transform:scale(1.05);
}

.skid-nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.skid-menu{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.skid-menu a{
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.skid-menu a:hover{
  color:var(--primary);
}

.skid-header__actions{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:12px;
}

.skid-header__actions a{
  padding:10px 18px;
  background:#111;
  border:1px solid #2a2a2a;
  border-radius:10px;
  transition:.3s;
}

.skid-header__actions a:hover{
  background:var(--primary);
  border-color:var(--primary);
}

.skid-mobile-toggle{
  display:none;
  width:50px;
  height:50px;
  border:none;
  border-radius:10px;
  background:#111;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

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

.skid-footer{
  background:var(--dark);
  border-top:1px solid var(--border);
  margin-top:80px;
}

.skid-footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:50px;
  padding:70px 0;
}

.footer-logo{
  max-width:180px;
  margin-bottom:20px;
}

.footer-brand p{
  color:var(--gray);
  line-height:1.8;
}

.footer-col h4{
  color:#fff;
  margin-bottom:20px;
  font-size:18px;
  text-transform:uppercase;
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-col li{
  margin-bottom:12px;
}

.footer-col a{
  color:var(--gray);
  transition:.3s;
}

.footer-col a:hover{
  color:var(--primary);
  padding-left:5px;
}

.footer-col p{
  color:var(--gray);
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111;
  transition:.3s;
}

.footer-social a:hover{
  background:var(--primary);
  transform:translateY(-3px);
}

.skid-footer-bottom{
  border-top:1px solid var(--border);
  padding:25px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#777;
  font-size:14px;
}

.skid-footer-bottom strong{
  color:#fff;
}

/* ==========================
   MOBILE
========================== */




@media(max-width:768px){

  .header-logo{
    max-height:50px;
  }

  .skid-footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo{
    margin:auto auto 20px;
  }

  .footer-social{
    justify-content:center;
  }
}

@media(max-width:480px){

  .skid-header__inner{
    min-height:75px;
  }

  .header-logo{
    max-height:42px;
  }
}


.skid-main{
  min-height:100vh;
  background:#050505;
  color:#fff;
}

.skid-hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
}

.skid-hero h1{
  font-size:clamp(2rem,6vw,5rem);
  line-height:1;
  margin-bottom:20px;
  text-transform:uppercase;
}

.skid-eyebrow{
  color:#39ff88;
  text-transform:uppercase;
  letter-spacing:3px;
}

.products{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.product{
  background:#111;
  border:1px solid #222;
  border-radius:15px;
  padding:15px;
  transition:.3s;
}

.product:hover{
  transform:translateY(-5px);
}

.woocommerce ul.products li.product img{
  width:100% !important;
  height:280px !important;
  object-fit:cover;
  border-radius:12px;

  transition:.4s;
}

.woocommerce ul.products li.product:hover img{
  transform:scale(1.08);
}


/* RESET */

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

body{
  font-family:Inter, Arial, sans-serif;
  background:#050505;
  color:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

/* HERO */

.skid-hero{
  padding:120px 0;
}

.skid-hero .skid-container{
  max-width:700px;
}

.skid-hero p{
  font-size:18px;
  color:#ccc;
  margin-bottom:30px;
}

.skid-btn{
  display:inline-block;
  padding:15px 30px;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.skid-btn--neon{
  background:#ff5a00;
  color:#fff;
}

.skid-btn--neon:hover{
  transform:translateY(-3px);
}

/* SEÇÕES */

.skid-section{
  padding:80px 0;
}

.skid-section h2{
  font-size:38px;
  margin-bottom:30px;
  text-transform:uppercase;
}

.skid-section--promo{
  background:#0d0d0d;
  border-top:1px solid #1f1f1f;
  border-bottom:1px solid #1f1f1f;
}

/* CATEGORIAS */

.skid-cats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:20px;
}

.skid-cat-card{
  background:#111;
  border:1px solid #222;
  border-radius:15px;
  padding:25px;
  text-align:center;
  transition:.3s;
}

.skid-cat-card:hover{
  border-color:#ff5a00;
  transform:translateY(-5px);
}

/* PRODUTOS */

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

.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:30px !important;

  margin:0 !important;
  padding:0 !important;
}

.woocommerce ul.products li.product{

  float:none !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  clear:none !important;

  background:#111;
  border:1px solid #222;
  border-radius:18px;
  padding:20px;

  display:flex;
  flex-direction:column;
}

.woocommerce ul.products li.product img{
  width:100% !important;
  height:280px !important;
  object-fit:cover;
  border-radius:12px;
}

.woocommerce ul.products li.product h2{
  font-size:18px !important;
  line-height:1.5 !important;
  min-height:60px;
  margin-top:15px;
}

.woocommerce ul.products li.product .price{
  color:#39ff88 !important;
  font-size:22px !important;
  font-weight:700 !important;
  margin:15px 0 !important;
}

.woocommerce ul.products li.product .button{
  width:100%;
  margin-top:auto;
  padding:14px !important;
}

@media(max-width:992px){

  .woocommerce ul.products{
    grid-template-columns:repeat(2,1fr) !important;
  }

}

@media(max-width:768px){

  .woocommerce ul.products{
    grid-template-columns:repeat(2,1fr) !important;
    gap:15px !important;
  }

  .woocommerce ul.products li.product{
    padding:12px;
  }

  .woocommerce ul.products li.product img{
    height:180px !important;
  }

  .woocommerce ul.products li.product h2{
    font-size:14px !important;
    min-height:auto;
  }

}

.woocommerce ul.products li.product img{
  border-radius:10px;
}

.woocommerce ul.products li.product h2{
  font-size:18px !important;
  margin-top:15px;
}

.price{
  color:#39ff88 !important;
  font-weight:bold;
}

.button,
.single_add_to_cart_button,
.checkout-button{
  background:#ff5a00 !important;
  color:#fff !important;
  border:none !important;
  border-radius:50px !important;
}

.footer-col p{
  display:flex;
  align-items:center;
  gap:10px;
  color:#999;
  margin-bottom:12px;
}

.footer-col p i{
  color:#ff5a00;
  width:20px;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.footer-social a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111;
  border:1px solid #222;
  color:#fff;
  font-size:18px;
  transition:.3s;
}

.footer-social a:hover{
  background:#ff5a00;
  border-color:#ff5a00;
  transform:translateY(-4px);
  box-shadow:0 0 15px rgba(255,90,0,.5);
}


.header-action{
  display:flex;
  align-items:center;
  gap:8px;

  padding:12px 18px;
  border-radius:12px;

  background:#111;
  border:1px solid #222;

  transition:.3s;
}

.header-action i{
  font-size:16px;
  color:#ff5a00;
}

.header-action:hover{
  background:#ff5a00;
  border-color:#ff5a00;
  transform:translateY(-2px);
}

.header-action:hover i,
.header-action:hover span{
  color:#fff;
}

.header-action span{
  font-weight:600;
}

.skid-topbar{
  background:linear-gradient(
          90deg,
          #ff5a00,
          #ff7b00
  );

  color:#fff;
  text-align:center;
  font-weight:700;
  min-height:42px;
}


.brands-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:20px;
  margin-top:30px;
}

.brands-grid div{
  background:#111;
  border:1px solid #222;
  padding:20px;
  text-align:center;
  border-radius:15px;
  font-weight:700;
  transition:.3s;
}

.brands-grid div:hover{
  border-color:#ff5a00;
  transform:translateY(-5px);
}

.skid-hero h1,
.skid-section h2{
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:2px;
}

.skid-topbar{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:40px;
}


.footer-social{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.footer-social a{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);

  color:#fff;
  font-size:22px;

  transition:all .3s ease;
}

.footer-social a:hover{
  transform:translateY(-5px) scale(1.08);
  box-shadow:0 0 20px rgba(255,102,0,.5);
}


.footer-social a:nth-child(1):hover{
  background:#1877f2;
  border-color:#1877f2;
}

.footer-social a:nth-child(2):hover{
  background:linear-gradient(
          45deg,
          #f09433,
          #e6683c,
          #dc2743,
          #cc2366,
          #bc1888
  );
}

.footer-social a:nth-child(3):hover{
  background:#000;
  border-color:#25f4ee;
  box-shadow:0 0 20px #25f4ee;
}

.footer-social a:nth-child(4):hover{
  background:#ff0000;
  border-color:#ff0000;
}

.skid-instagram-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  padding:14px 28px;
  background:linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45);
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.skid-instagram-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.skid-instagram h2 a{
  color:#fff;
  text-decoration:none;
}

.skid-instagram h2 a:hover{
  color:#ff7b00;
}


.skid-hero{
  position:relative;
  min-height:90vh;

  background-image:url('/wp-content/themes/skid/assets/images/banner-hero.png');

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

  display:flex;
  align-items:center;
}

.skid-hero-overlay{
  position:absolute;
  inset:0;

  background:
          linear-gradient(
                  90deg,
                  rgba(0,0,0,.85) 0%,
                  rgba(0,0,0,.55) 45%,
                  rgba(0,0,0,.20) 100%
          );
}

.skid-hero-content{
  position:relative;
  z-index:2;

  max-width:700px;
}

.hero-tag{
  color:#ff6b00;
  font-weight:700;
  letter-spacing:3px;
}

.skid-hero h1{
  font-size:clamp(48px,8vw,90px);
  font-weight:900;
  line-height:1;
  margin:20px 0;

  text-transform:uppercase;
}

.skid-hero p{
  font-size:20px;
  line-height:1.7;
  color:#d4d4d4;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#ff6b00;
  color:#fff;
  padding:16px 34px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:16px 34px;
  border-radius:8px;
  text-decoration:none;
}

.hero-logo{
  width:180px;
  margin-bottom:20px;
}


@media (max-width:768px){

  .skid-hero{
    min-height:70vh;
    padding:80px 0;
    text-align:center;
  }

  .skid-hero-content{
    max-width:100%;
    padding:0 10px;
  }

  .skid-hero h1{
    font-size:48px;
    line-height:1;
  }

  .skid-hero p{
    font-size:16px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

}



@media (max-width:768px){

  .brands-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .brands-grid div{
    padding:15px;
    font-size:14px;
  }

}


/* ===== PREMIUM UPGRADE 2026 ===== */
:root{
 --primary:#FF3B30;
 --bg:#0D0D0D;
 --bg2:#1A1A1A;
}
body{background:var(--bg);}
.skid-topbar{
background:linear-gradient(90deg,#FF3B30,#0D0D0D);
color:#fff;text-align:center;padding:8px;font-weight:700;
}
.skid-header{box-shadow:0 10px 30px rgba(0,0,0,.25);}
.brands-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
}
.brands-grid div{
padding:18px;
border:1px solid #222;
border-radius:12px;
text-align:center;
}
.skid-benefits{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}
@media(max-width:768px){
 .skid-header__inner{min-height:72px;}
 .header-logo{max-height:50px;}
}


/* ===== PREMIUM UPGRADE DANIEL BENTO ===== */
:root{
 --radius:16px;
 --shadow-soft:0 10px 30px rgba(0,0,0,.15);
}

.skid-header{
 backdrop-filter:blur(20px);
}

.skid-header.scrolled{
 box-shadow:var(--shadow-soft);
}

.skid-menu a{
 position:relative;
}

.skid-menu a::after{
 content:'';
 position:absolute;
 left:0;
 bottom:-6px;
 width:0;
 height:2px;
 background:var(--primary);
 transition:.3s;
}

.skid-menu a:hover::after{
 width:100%;
}

.brands-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
 gap:16px;
}

.brands-grid div{
 border-radius:16px;
 padding:20px;
 text-align:center;
 background:#111;
 border:1px solid #222;
}

@media(max-width:768px){
 .skid-header__inner{
   flex-wrap:wrap;
 }
 .header-logo{
   max-height:55px;
 }
 .brands-grid{
   grid-template-columns:repeat(2,1fr);
 }
}


/* ===================================
   HEADER MOBILE PROFISSIONAL
=================================== */

@media (max-width: 991px){

  .skid-header{
    position:sticky;
    top:0;
    z-index:99999;
  }

  .skid-header__inner{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:75px;
    padding:0 15px;
  }

  .skid-logo-link{
    flex:none;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .header-logo{
    max-height:50px;
    width:auto;
  }

  .skid-header__actions{
    display:none;
  }

  .skid-mobile-toggle{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);

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

    width:46px;
    height:46px;

    background:#111;
    border:1px solid #222;
    border-radius:10px;

    color:#fff;
    font-size:22px;

    cursor:pointer;

    z-index:100001;
  }

  .skid-nav{
    position:fixed;
    top:0;
    right:-100%;

    width:300px;
    max-width:85%;

    height:100vh;

    background:#050505;

    border-left:1px solid #222;

    padding:90px 25px 25px;

    overflow-y:auto;

    transition:right .35s ease;

    z-index:100000;

    box-shadow:-10px 0 40px rgba(0,0,0,.7);
  }

  .skid-nav.is-open{
    right:0;
  }

  .skid-menu{
    display:flex;
    flex-direction:column;
    gap:0;
    padding:0;
    margin:0;
  }

  .skid-menu li{
    width:100%;
    list-style:none;
  }

  .skid-menu a{
    display:block;
    width:100%;

    padding:18px 0;

    color:#fff;
    font-size:16px;
    font-weight:600;

    border-bottom:1px solid #222;
  }

  .skid-menu a:hover{
    color:#ff5a00;
  }

}

/* OVERLAY */

.mobile-overlay{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,.65);

  opacity:0;
  visibility:hidden;

  transition:.3s;

  z-index:99998;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}