/*
Theme Name: Impulse Store Theme
Theme URI: https://www.impulselead.com.br/
Author: Impulse Lead
Author URI: https://www.impulselead.com.br/
Description: Tema premium para loja virtual normal com WooCommerce, visual moderno em azul, ideal para loja de tênis, moda e produtos físicos.
Version: 1.0.4
Text Domain: impulse-store-theme
*/

:root{
  --is-primary:#0057ff;
  --is-secondary:#001a3f;
  --is-accent:#00a3ff;
  --is-bg:#f5f8ff;
  --is-dark:#030b18;
  --is-text:#111827;
  --is-muted:#64748b;
  --is-card:#ffffff;
  --is-border:#dbe7ff;
  --is-button:#0057ff;
  --is-button-text:#ffffff;
  --is-price:#0057ff;
  --is-radius:18px;
  --is-shadow:0 18px 45px rgba(0,34,90,.12);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--is-text);
  background:var(--is-bg);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.is-container{width:min(1180px,calc(100% - 36px));margin:0 auto}

.is-topbar{
  background:var(--is-dark);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
}
.is-topbar .is-container{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.is-header{
  background:var(--is-secondary);
  color:#fff;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}
.admin-bar .is-header{top:32px}
.is-header-main{
  min-height:84px;
  display:grid;
  grid-template-columns:220px 1fr 260px;
  gap:24px;
  align-items:center;
}
.is-logo{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:28px;
  line-height:1;
  font-weight:950;
  letter-spacing:.02em;
}
.is-logo span{color:var(--is-accent)}
.is-logo small{
  font-size:11px;
  letter-spacing:.35em;
  color:#bcd5ff;
  margin-left:4px;
}
.is-logo img{max-height:62px;max-width:210px;object-fit:contain}

.is-search form{
  display:flex;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
.is-search input{
  flex:1;
  height:48px;
  border:0;
  padding:0 18px;
  outline:none;
  font-size:15px;
}
.is-search button{
  width:62px;
  border:0;
  background:var(--is-button);
  color:var(--is-button-text);
  font-size:20px;
  cursor:pointer;
}
.is-header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  font-size:13px;
}
.is-header-actions a{color:#fff}
.is-cart{
  background:rgba(255,255,255,.08);
  padding:10px 12px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:8px;
}

.is-nav{
  background:var(--is-primary);
  color:#fff;
}
.is-nav .is-container{
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}
.is-nav a{color:#fff;opacity:.96}
.is-nav a:hover{opacity:1;color:#e7f2ff}

.is-hero{
  background:
    radial-gradient(circle at 76% 24%, rgba(0,119,255,.42), transparent 32%),
    linear-gradient(135deg,var(--is-dark),var(--is-secondary));
  color:#fff;
  overflow:hidden;
}
.is-hero-inner{
  min-height:500px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:30px;
}
.is-hero-content{position:relative;z-index:2}
.is-hero-kicker{
  color:var(--is-accent);
  font-size:70px;
  line-height:.88;
  font-weight:950;
  letter-spacing:-.06em;
  text-transform:uppercase;
  opacity:.42;
}
.is-hero h1{
  margin:-18px 0 16px;
  max-width:560px;
  color:#fff;
  font-size:58px;
  line-height:.96;
  font-weight:950;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.is-hero h1 span{color:#fff}
.is-hero p{
  max-width:470px;
  color:#dce9ff;
  font-size:20px;
  line-height:1.45;
  margin:0 0 30px;
}
.is-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border-radius:10px;
  background:var(--is-button);
  color:var(--is-button-text);
  font-weight:950;
  text-transform:uppercase;
  font-size:14px;
  border:0;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(0,87,255,.32);
}
.is-btn:hover{filter:brightness(.94);color:var(--is-button-text)}
.is-btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:none;
}
.is-hero-media{
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.is-hero-media::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(0,163,255,.34), transparent 64%);
  filter:blur(4px);
}
.is-hero-media img{
  position:relative;
  z-index:2;
  max-height:430px;
  object-fit:contain;
  filter:drop-shadow(0 34px 42px rgba(0,0,0,.38));
  transform:rotate(-8deg);
}

.is-benefits{
  background:var(--is-secondary);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
}
.is-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.is-benefit{
  min-height:92px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-right:1px solid rgba(255,255,255,.10);
}
.is-benefit:last-child{border-right:0}
.is-benefit-icon{
  width:38px;height:38px;border:1px solid rgba(255,255,255,.35);
  border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--is-accent);
}
.is-benefit strong{display:block;font-size:15px;text-transform:uppercase}
.is-benefit span{font-size:13px;color:#c8d8f0}

.is-section{padding:42px 0}
.is-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
}
.is-section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:.02em;
  color:var(--is-secondary);
  text-transform:uppercase;
}
.is-section-head a{
  color:var(--is-primary);
  font-weight:900;
  font-size:14px;
}

.is-cats{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.is-cat{
  background:var(--is-card);
  border:1px solid var(--is-border);
  border-radius:14px;
  padding:18px;
  text-align:center;
  box-shadow:0 12px 28px rgba(0,34,90,.06);
}
.is-cat-img{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}
.is-cat-img img{max-height:92px;object-fit:contain}
.is-cat strong{display:block;font-size:15px;color:var(--is-text)}
.is-cat span{display:block;color:var(--is-primary);font-size:13px;margin-top:6px;font-weight:800}

.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(5,1fr) !important;
  gap:18px !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after{display:none !important}
.woocommerce ul.products li.product{
  width:auto !important;
  margin:0 !important;
  background:#fff !important;
  border:1px solid var(--is-border) !important;
  border-radius:14px !important;
  overflow:hidden !important;
  box-shadow:0 14px 30px rgba(0,34,90,.07) !important;
  padding:0 0 16px !important;
  position:relative;
}
.woocommerce ul.products li.product a img{
  width:100% !important;
  height:185px !important;
  object-fit:contain !important;
  background:#f3f7ff;
  margin:0 !important;
  padding:14px !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-size:15px !important;
  line-height:1.32 !important;
  color:#111827 !important;
  font-weight:800 !important;
  padding:14px 14px 4px !important;
  min-height:54px;
}
.woocommerce ul.products li.product .price{
  padding:0 14px !important;
  color:var(--is-price) !important;
  font-weight:950 !important;
  font-size:18px !important;
}
.woocommerce ul.products li.product .button{
  margin:12px 14px 0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:42px !important;
  border-radius:8px !important;
  background:var(--is-button) !important;
  color:var(--is-button-text) !important;
  font-weight:950 !important;
  text-transform:uppercase;
  font-size:12px !important;
}
.woocommerce span.onsale{
  background:var(--is-primary) !important;
  color:#fff !important;
  border-radius:8px !important;
  min-height:0 !important;
  line-height:1 !important;
  padding:8px 10px !important;
  font-size:11px !important;
  font-weight:900 !important;
  top:10px !important;
  left:10px !important;
}

.is-promo{
  margin:34px 0;
  min-height:190px;
  border-radius:18px;
  background:
    linear-gradient(90deg, rgba(0,26,63,.98), rgba(0,87,255,.8)),
    var(--is-secondary);
  color:#fff;
  overflow:hidden;
  display:grid;
  grid-template-columns:.72fr 1fr .34fr;
  align-items:center;
  padding:0 42px;
  box-shadow:var(--is-shadow);
}
.is-promo h2{
  margin:0;
  font-size:34px;
  line-height:.95;
  color:#fff;
  text-transform:uppercase;
}
.is-promo p{color:#dce9ff;font-size:18px;margin:10px 0 22px}
.is-promo-img{display:flex;align-items:center;justify-content:center;height:190px}
.is-promo-img img{max-height:190px;object-fit:contain;filter:drop-shadow(0 20px 28px rgba(0,0,0,.32))}
.is-promo-discount{
  text-align:center;font-size:22px;font-weight:950;text-transform:uppercase;color:#fff
}
.is-promo-discount strong{display:block;font-size:72px;line-height:.9}

.is-brands{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}
.is-brand{
  min-height:76px;
  background:#fff;
  border:1px solid var(--is-border);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:950;
  color:#111827;
  text-transform:uppercase;
}

.is-footer{
  background:var(--is-dark);
  color:#dce9ff;
  margin-top:40px;
}
.is-footer-main{
  padding:48px 0;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr 1.1fr;
  gap:30px;
}
.is-footer h3{color:#fff;font-size:14px;text-transform:uppercase;margin:0 0 16px}
.is-footer p,.is-footer a{font-size:14px;color:#dce9ff;line-height:1.7}
.is-footer a{display:block}
.is-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
  color:#96abc8;
  font-size:13px;
  display:flex;
  justify-content:space-between;
}
.is-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  z-index:999;
  box-shadow:0 16px 34px rgba(37,211,102,.32);
}

@media(max-width:980px){
  .admin-bar .is-header{top:0}
  .is-topbar .is-container{height:auto;padding:8px 0;flex-direction:column;gap:4px}
  .is-header-main{grid-template-columns:1fr;gap:16px;padding:18px 0}
  .is-header-actions{justify-content:space-between}
  .is-nav .is-container{overflow:auto;justify-content:flex-start;gap:20px;padding:0 18px}
  .is-hero-inner{grid-template-columns:1fr;min-height:auto;padding:46px 0}
  .is-hero-kicker{font-size:54px}
  .is-hero h1{font-size:42px}
  .is-hero-media{min-height:260px}
  .is-hero-media img{max-height:260px}
  .is-benefits-grid{grid-template-columns:1fr 1fr}
  .is-cats{grid-template-columns:repeat(2,1fr)}
  .woocommerce ul.products{grid-template-columns:repeat(2,1fr) !important}
  .is-promo{grid-template-columns:1fr;padding:28px;text-align:center}
  .is-promo-img{height:auto;margin:18px 0}
  .is-brands{grid-template-columns:repeat(2,1fr)}
  .is-footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .is-container{width:min(100% - 24px,1180px)}
  .is-logo{font-size:24px}
  .is-search input{height:44px}
  .is-hero h1{font-size:34px}
  .is-hero p{font-size:16px}
  .is-benefits-grid{grid-template-columns:1fr}
  .woocommerce ul.products li.product a img{height:165px !important}
  .is-footer-main{grid-template-columns:1fr}
  .is-footer-bottom{flex-direction:column;gap:8px;text-align:center}
}


/* Impulse Store v1.0.1 Safe Fix */
.is-header,
.is-topbar,
.is-nav,
.is-hero,
.is-benefits,
.is-footer{
  width:100% !important;
}
.is-container{
  max-width:1180px !important;
}


/* Impulse Store v1.0.3 - Full Banner Hero e Oferta */
.is-hero{
  display:none !important;
}

.is-hero-full{
  padding:24px 0 0;
  background:var(--is-bg);
}

.is-hero-full-card{
  position:relative;
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(1,17,43,.94) 0%, rgba(1,17,43,.88) 38%, rgba(1,17,43,.45) 62%, rgba(1,17,43,.18) 100%),
    var(--hero-banner, linear-gradient(135deg,#001a3f 0%,#003f9c 55%,#0a5cff 100%));
  background-size:cover;
  background-position:center center;
  box-shadow:0 22px 44px rgba(0,18,48,.18);
}

.is-hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 78% 26%, rgba(0,163,255,.25), transparent 28%);
  pointer-events:none;
}

.is-hero-full-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-height:520px;
  max-width:560px;
  padding:56px 52px;
}

.is-hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(0,87,255,.18);
  border:1px solid rgba(0,163,255,.38);
  color:#55b8ff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.is-hero-full-content h1{
  margin:0 0 16px !important;
  color:#fff !important;
  font-size:64px !important;
  line-height:.95 !important;
  font-weight:950 !important;
  letter-spacing:-.04em !important;
  text-transform:uppercase !important;
  max-width:560px;
}

.is-hero-full-content p{
  margin:0 0 28px !important;
  color:#e1ebff !important;
  font-size:21px !important;
  line-height:1.45 !important;
  max-width:470px;
}

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

.is-promo{
  display:none !important;
}

.is-promo-full{
  position:relative;
  margin:34px 0 0;
  min-height:220px;
  border-radius:22px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(0,26,63,.92) 0%, rgba(0,26,63,.72) 36%, rgba(0,26,63,.25) 70%, rgba(0,26,63,.12) 100%),
    var(--promo-banner, linear-gradient(135deg,#001a3f 0%,#003f9c 50%,#0a5cff 100%));
  background-size:cover;
  background-position:center center;
  box-shadow:var(--is-shadow);
}

.is-promo-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.is-promo-full-content{
  position:relative;
  z-index:2;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:32px 38px;
  color:#fff;
}

.is-promo-copy{
  max-width:430px;
}

.is-promo-copy h2{
  margin:0 0 10px !important;
  color:#fff !important;
  font-size:40px !important;
  line-height:.95 !important;
  text-transform:uppercase !important;
}

.is-promo-copy p{
  margin:0 !important;
  color:#dce9ff !important;
  font-size:18px !important;
  line-height:1.4 !important;
}

.is-promo-actions{
  display:flex;
  align-items:center;
  gap:24px;
}

.is-promo-discount{
  min-width:150px;
  text-align:center;
  color:#fff;
  font-weight:950;
  text-transform:uppercase;
}

.is-promo-discount span,
.is-promo-discount em{
  display:block;
  font-style:normal;
  font-size:18px;
  line-height:1;
}

.is-promo-discount strong{
  display:block;
  font-size:78px;
  line-height:.88;
}

@media(max-width:980px){
  .is-hero-full-card{min-height:430px;border-radius:22px}
  .is-hero-full-content{min-height:430px;padding:42px 32px;max-width:100%}
  .is-hero-full-content h1{font-size:46px !important}
  .is-hero-full-content p{font-size:18px !important;max-width:420px}
  .is-promo-full-content{padding:28px 24px;flex-direction:column;align-items:flex-start;justify-content:center}
  .is-promo-actions{width:100%;justify-content:space-between}
  .is-promo-copy h2{font-size:34px !important}
}

@media(max-width:560px){
  .is-hero-full{padding:18px 0 0}
  .is-hero-full-card{min-height:360px;border-radius:18px;background-position:68% center}
  .is-hero-full-content{min-height:360px;padding:28px 20px;max-width:100%}
  .is-hero-badge{min-height:34px;font-size:11px;padding:0 12px;margin-bottom:14px}
  .is-hero-full-content h1{font-size:34px !important;max-width:260px}
  .is-hero-full-content p{font-size:15px !important;line-height:1.4;max-width:260px;margin-bottom:20px !important}
  .is-hero-buttons{gap:10px}
  .is-hero-buttons .is-btn{min-height:46px;padding:0 18px;font-size:12px}
  .is-promo-full{min-height:190px;border-radius:18px}
  .is-promo-full-content{min-height:190px;padding:20px}
  .is-promo-copy h2{font-size:28px !important}
  .is-promo-copy p{font-size:15px !important}
  .is-promo-actions{align-items:flex-end;gap:16px}
  .is-promo-discount{min-width:110px}
  .is-promo-discount span,.is-promo-discount em{font-size:14px}
  .is-promo-discount strong{font-size:48px}
}


/* Impulse Store v1.0.4 - Hero full width + marcas editáveis */
.is-hero-full{
  padding:0 !important;
  background:var(--is-secondary);
}
.is-hero-full-card{
  width:100%;
  min-height:560px;
  border-radius:0 !important;
  box-shadow:none !important;
  background-position:center center;
}
.is-hero-full .is-container{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}
.is-hero-full-content{
  min-height:560px;
  padding:64px 0;
  max-width:560px;
}
.is-hero-full-content h1{
  font-size:72px !important;
  line-height:.92 !important;
  margin:0 0 18px !important;
}
.is-hero-full-content p{
  font-size:20px !important;
}
.is-promo-actions{justify-content:flex-end; flex-wrap:wrap;}
.is-promo-discount strong{font-size:86px;}
.is-brands{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.is-brand{
  min-height:84px;
  padding:12px;
  background:#fff;
  border:1px solid var(--is-border);
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,34,90,.05);
}
.is-brand img{
  max-width:100%;
  max-height:42px;
  object-fit:contain;
  display:block;
}
.is-brand span{
  font-size:26px;
  font-weight:950;
  color:#111827;
  text-transform:uppercase;
}
@media(max-width:980px){
  .is-hero-full .is-container{width:min(100%,calc(100% - 32px));}
  .is-hero-full-card{min-height:420px; background-position:58% center;}
  .is-hero-full-content{min-height:420px; padding:42px 0; max-width:420px;}
  .is-hero-full-content h1{font-size:48px !important;}
  .is-hero-full-content p{font-size:18px !important; max-width:360px;}
  .is-promo-discount strong{font-size:60px;}
  .is-brands{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:560px){
  .is-hero-full .is-container{width:100%; max-width:100% !important;}
  .is-hero-full-card{min-height:360px; background-position:64% center;}
  .is-hero-full-content{min-height:360px; padding:28px 16px 34px; max-width:260px;}
  .is-hero-full-content h1{font-size:34px !important; line-height:.94 !important; max-width:240px;}
  .is-hero-full-content p{font-size:15px !important; max-width:230px;}
  .is-promo-actions{width:100%;justify-content:space-between;}
  .is-brands{grid-template-columns:repeat(2,1fr);}
  .is-brand{min-height:72px;}
  .is-brand img{max-height:34px;}
}
