:root{
  --bg:#f4f7fb;
  --dark:#0b1d3a;
  --dark2:#102746;
  --card:#fff;
  --text:#0b1d3a;
  --muted:#66758d;
  --blue:#1496f3;
  --blue2:#087ff0;
  --red:#ff3f48;
  --green:#18bf52;
  --yellow:#ffc83d;
  --line:#e4eaf2;
  --shadow:0 10px 28px rgba(15,35,65,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
.container{
  width:96%;
  max-width:1680px;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
}

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

.site-header{
  background:#fff;
  color:var(--text);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 4px 18px rgba(15,35,65,.07);
}

.topbar{
  min-height:38px;
  display:flex;
  justify-content:space-around;
  align-items:center;
  gap:14px;
  font-size:13px;
  color:#233858;
  border-bottom:1px solid #e7edf5;
  white-space:nowrap;
  overflow:auto;
  padding:0 12px;
  background:#f5f8fc;
}

.topbar a{color:#233858}

.header-main{
  display:grid;
  grid-template-columns:240px 1fr 300px;
  gap:24px;
  align-items:center;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  height:64px;
}

.brand strong{
  display:block;
  font-size:34px;
  letter-spacing:-1px;
  line-height:.9;
}

.brand span,.footer span{color:var(--blue)}

.brand small{
  display:block;
  letter-spacing:7px;
  font-weight:700;
  font-size:12px;
  margin-top:8px;
  color:var(--text);
}

.brand-logo{
  display:block;
  width:auto;
  height:84px;
  max-width:305px;
  object-fit:contain;
  object-position:left center;
}

/* =========================================================
   BUSCA
   ========================================================= */

.search{
  height:54px;
  display:grid;
  grid-template-columns:1fr 205px 64px;
  overflow:hidden;
  background:#fff;
  border:1px solid #dfe6ef;
  border-radius:999px;
  box-shadow:0 3px 12px rgba(15,35,65,.04);
}

.search input,
.search select{
  border:0;
  outline:0;
  padding:0 20px;
  color:#52617a;
  min-width:0;
  background:#fff;
}

.search input{
  font-size:15px;
}

.search select{
  border-left:1px solid #e4eaf2;
  color:#52617a;
}

.search button{
  border:0;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

/* =========================================================
   AÇÕES DO HEADER
   ========================================================= */

.header-actions{
  display:flex;
  justify-content:flex-end;
  gap:22px;
}

.header-actions a{
  display:grid;
  grid-template-columns:auto auto;
  column-gap:7px;
  align-items:center;
  font-size:13px;
  position:relative;
  color:var(--text);
}

.header-actions span{
  grid-row:1/3;
  font-size:28px;
}

.header-actions small{
  display:block;
  color:#748198;
  font-size:11px;
}

.cart-link em{
  position:absolute;
  right:-12px;
  top:-12px;
  background:var(--blue);
  color:#fff;
  font-style:normal;
  border-radius:999px;
  padding:3px 7px;
  font-size:11px;
}

/* =========================================================
   NAVEGAÇÃO
   ========================================================= */

.nav-wrap{
  border-top:1px solid #edf1f6;
  border-bottom:1px solid #e6ecf4;
  background:#fff;
}

.main-nav{
  display:flex;
  gap:14px;
  align-items:center;
  min-height:58px;
  overflow:auto;
}

.main-nav a,
.categories-btn{
  color:var(--text);
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
}

.categories-btn{
  border:0;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  padding:15px 24px;
  border-radius:9px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(20,150,243,.18);
}

.main-nav a{
  position:relative;
  padding:20px 9px;
}

.main-nav a:not(.promo):hover{
  color:var(--blue2);
}

.main-nav a:not(.promo):first-of-type::after{
  content:"";
  position:absolute;
  left:9px;
  right:9px;
  bottom:7px;
  height:2px;
  border-radius:999px;
  background:var(--blue2);
}

.main-nav .promo{color:var(--red)}

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

.hero{
  position:relative;
  margin-top:16px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
  min-height:400px;
  border:1px solid #edf1f6;
}

.hero-track{
  min-height:400px;
}

.hero-slide{
  position:absolute;
  inset:0;
  display:none;
  min-height:400px;
  background:#fff;
}

.hero-slide.active{display:block}

.hero-content{
  position:relative;
  z-index:2;
  color:var(--text);
  width:43%;
  height:100%;
  min-height:400px;
  padding:42px 56px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.tag,.badge{
  display:inline-flex;
  background:#eaf5ff;
  color:var(--blue2);
  border-radius:999px;
  padding:7px 12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.tag.green{background:#eafaf0;color:#169447}
.tag.red{background:#fff0f1;color:#df3540}

.hero h1{
  font-size:42px;
  line-height:1.03;
  margin:16px 0 14px;
  text-transform:uppercase;
  color:var(--text);
  letter-spacing:-.03em;
}

.hero h1 span{
  display:block;
  color:var(--blue2);
}

.hero p{
  max-width:390px;
  line-height:1.55;
  margin:0 0 12px;
  color:var(--muted);
  font-size:16px;
}

.rating{
  font-weight:800;
  color:var(--yellow);
  margin:10px 0;
}

.rating small{color:var(--muted)}

.price{
  display:grid;
  gap:4px;
  margin:12px 0 16px;
}

.price small{color:var(--muted)}
.price strong{font-size:32px;color:var(--blue2)}
.price em{font-style:normal;color:var(--muted);font-size:13px}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  padding:13px 20px;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.btn.primary{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  box-shadow:0 7px 16px rgba(20,150,243,.20);
}

.btn.ghost{
  border:1px solid #9aa8ba;
  color:var(--text);
  background:rgba(255,255,255,.78);
}

.hero-art{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  overflow:hidden;
  background:#fff;
}

.hero-banner-image{
  position:absolute;
  right:0;
  top:50%;
  display:block;
  width:72%;
  height:auto;
  max-width:none;
  transform:translateY(-50%);
  object-fit:cover;
  object-position:center center;
}

.product-3d{
  position:absolute;
  right:8%;
  top:50%;
  transform:translateY(-50%);
  font-size:190px;
  filter:drop-shadow(0 20px 30px rgba(15,35,65,.18));
  animation:float 4s ease-in-out infinite;
}

@keyframes float{
  0%,100%{translate:0 0}
  50%{translate:0 -12px}
}

.hero-arrow{
  position:absolute;
  top:50%;
  translate:0 -50%;
  z-index:3;
  width:46px;
  height:46px;
  border:1px solid #e4eaf2;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  color:var(--text);
  font-size:34px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(15,35,65,.10);
}

.hero-prev{left:14px}
.hero-next{right:14px}

.hero-dots{
  position:absolute;
  z-index:4;
  left:50%;
  bottom:18px;
  translate:-50% 0;
  display:flex;
  gap:7px;
}

.hero-dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:50%;
  background:#cfd7e2;
  cursor:pointer;
  padding:0;
}

.hero-dots button.active{
  background:var(--blue);
  width:24px;
  border-radius:999px;
}

/* =========================================================
   CATEGORIAS
   ========================================================= */

.category-strip{
  display:grid;
  grid-template-columns:repeat(9,1fr);
  gap:14px;
  margin-top:24px;
}

.category-strip a{
  background:#fff;
  border-radius:18px;
  min-height:112px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 8px 22px rgba(15,35,65,.06);
  border:1px solid #edf1f6;
  font-size:11px;
  text-transform:uppercase;
  color:var(--text);
  transition:.2s;
  text-align:center;
}

.category-strip span{
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:27px;
  background:#edf6ff;
}

.category-strip a:nth-child(2n) span{background:#eafbf4}
.category-strip a:nth-child(3n) span{background:#fff0eb}
.category-strip a:nth-child(4n) span{background:#f3edff}

.category-strip a:hover,
.product-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

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

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:32px 0 14px;
}

.section-head h2{
  margin:0;
  text-transform:uppercase;
  font-size:20px;
  color:var(--text);
}

.section-head a{
  color:var(--blue2);
  font-weight:800;
  font-size:13px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.product-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 8px 22px rgba(15,35,65,.06);
  border:1px solid #edf1f6;
  transition:.2s;
}

.product-card .badge{
  position:absolute;
  left:10px;
  top:10px;
  background:#fff0f1;
  color:var(--red);
  padding:5px 8px;
}

.product-card .badge:nth-child(1){font-size:10px}

.fav{
  position:absolute;
  right:10px;
  top:10px;
  border:1px solid #edf1f6;
  background:#fff;
  color:var(--text);
  width:34px;
  height:34px;
  border-radius:50%;
  font-size:21px;
  cursor:pointer;
}

.product-image{
  height:130px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  margin-top:15px;
  background:linear-gradient(180deg,#f8fafc,#fff);
  border-radius:13px;
}

.stars{
  font-size:12px;
  color:var(--yellow);
  margin-top:9px;
}

.stars small{color:var(--muted)}

.product-card h3{
  font-size:14px;
  margin:7px 0 6px;
  min-height:36px;
}

.product-card strong{
  font-size:17px;
  display:block;
}

.product-card small{
  display:block;
  color:#45617e;
  font-size:12px;
  margin:4px 0 10px;
}

.buy-btn{
  width:100%;
  border:0;
  border-radius:9px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  font-weight:900;
  padding:10px;
  cursor:pointer;
  opacity:0;
  transform:translateY(6px);
  transition:.2s;
}

.product-card:hover .buy-btn{
  opacity:1;
  transform:translateY(0);
}

/* =========================================================
   BLOCOS INFERIORES
   ========================================================= */

.triple{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.mini-section,.services{margin-top:10px}

.mini-list{display:grid;gap:10px}

.mini-list article{
  background:#fff;
  border-radius:16px;
  padding:10px;
  box-shadow:0 8px 22px rgba(15,35,65,.06);
  border:1px solid #edf1f6;
}

.mini-list article a{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:12px;
  align-items:center;
}

.mini-list span{
  grid-row:1/3;
  font-size:38px;
  background:#f5f8fc;
  border-radius:12px;
  text-align:center;
  padding:10px;
}

.mini-list small{
  color:var(--blue2);
  font-weight:800;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.service-grid article{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 22px rgba(15,35,65,.06);
  border:1px solid #edf1f6;
}

.service-grid span{font-size:34px}
.service-grid h3{margin:10px 0 6px}
.service-grid p{color:var(--muted);margin:0;line-height:1.5}

/* =========================================================
   WHATSAPP E FOOTER
   ========================================================= */

.whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#12c85b;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  z-index:60;
  box-shadow:0 10px 24px rgba(18,200,91,.35);
}

.footer{
  background:#0b1d3a;
  color:#fff;
  margin-top:40px;
  padding:34px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.3fr;
  gap:24px;
}

.footer strong{font-size:28px}
.footer p{color:#d6dfeb;line-height:1.5}
.footer a{display:block;color:#d6dfeb;margin:8px 0}
.footer h4{margin:0 0 10px}

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

@media (max-width:980px){
  .brand-logo{margin:0 auto}

  .header-main{
    grid-template-columns:1fr;
    gap:14px;
  }

  .brand{
    justify-content:center;
    text-align:center;
  }

  .header-actions{justify-content:center}

  .search{grid-template-columns:1fr 52px}
  .search select{display:none}

  .hero-content{
    width:56%;
    padding:30px 42px;
    align-items:flex-start;
  }

  .hero-banner-image{
    right:0;
    top:50%;
    width:82%;
    height:auto;
    transform:translateY(-50%);
    object-fit:cover;
    object-position:center;
  }

  .product-3d{font-size:170px}

  .category-strip{grid-template-columns:repeat(3,1fr)}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .triple,.service-grid,.footer-grid{grid-template-columns:1fr}
}

@media (max-width:620px){
  .container{
    width:min(100% - 20px,1200px);
    padding:0;
  }

  .topbar{justify-content:flex-start}

  .brand strong{font-size:28px}

  .header-actions{gap:12px}

  .header-actions a b,
  .header-actions small{display:none}

  .header-actions span{font-size:25px}

  .hero{
    min-height:430px;
    margin-top:10px;
  }

  .hero-track,
  .hero-slide{min-height:430px}

  .hero h1{font-size:28px}

  .hero-content{
    width:100%;
    padding:28px 46px 58px;
    justify-content:flex-end;
    align-items:flex-start;
    background:linear-gradient(0deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.88) 43%,rgba(255,255,255,.20) 76%);
  }

  .hero-art{inset:0}

  .hero-banner-image{
    right:50%;
    top:0;
    width:auto;
    height:100%;
    min-width:100%;
    transform:translateX(50%);
    object-fit:cover;
    object-position:center;
  }

  .product-3d{font-size:145px}

  .hero-arrow{
    width:36px;
    height:36px;
    font-size:30px;
  }

  .category-strip{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .category-strip a{min-height:92px}

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

  .product-image{
    height:104px;
    font-size:58px;
  }

  .product-card h3{font-size:13px}

  .buy-btn{
    opacity:1;
    transform:none;
  }

  .main-nav{padding-bottom:2px}
  .categories-btn{padding:12px 16px}
}



/* =========================================================
   NOVO HEADER - LAYOUT CLARO
   ========================================================= */

.site-header {
    background: #ffffff;
    color: #0b1d3a;

    box-shadow:
        0 3px 14px rgba(15, 35, 65, 0.06);
}


/* =========================================================
   BARRA SUPERIOR
   ========================================================= */

.topbar {
    min-height: 44px;

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

    gap: 20px;

    padding: 0 28px;

    background: #f3f6fa;

    border-bottom: 1px solid #e4eaf2;

    color: #213555;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #213555;
}

.topbar-item svg {
    width: 18px;
    height: 18px;

    flex: 0 0 auto;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ÁREA PRINCIPAL DO HEADER
   ========================================================= */

.header-main {
    display: grid;

    grid-template-columns:
        280px
        minmax(420px, 1fr)
        auto;

    gap: 30px;

    align-items: center;

    padding-top: 20px;
    padding-bottom: 20px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
    display: flex;
    align-items: center;

    height: 68px;
}

.brand-logo {
    display: block;

    width: auto;
    height: 84px;

    max-width: 305px;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   BUSCA
   ========================================================= */

.search {
    position: relative;

    height: 58px;

    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr)
        220px
        64px;

    align-items: center;

    overflow: hidden;

    border: 1px solid #dce4ee;
    border-radius: 999px;

    background: #ffffff;

    box-shadow:
        0 2px 8px rgba(15, 35, 65, 0.03);
}

.search-leading-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b1d3a;
}

.search-leading-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search input {
    min-width: 0;

    height: 100%;

    padding: 0 12px 0 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #354865;

    font-size: 15px;
}

.search input::placeholder {
    color: #7a8799;
}

.search select {
    height: 100%;

    padding: 0 18px;

    border: 0;
    border-left: 1px solid #e4eaf2;

    outline: 0;

    background: #ffffff;

    color: #52617a;

    cursor: pointer;
}

.search button {
    width: 64px;
    height: 58px;

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

    padding: 0;

    border: 0;

    background:
        linear-gradient(
            135deg,
            #159df6,
            #087ff0
        );

    color: #ffffff;

    cursor: pointer;
}

.search button svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   MINHA CONTA / FAVORITOS / CARRINHO
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;
}

.header-action {
    position: relative;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #0b1d3a;

    white-space: nowrap;
}

.header-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 auto;
}

.header-action-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-action-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.header-action-copy b {
    color: #0b1d3a;

    font-size: 13px;
    font-weight: 800;
}

.header-action-copy small {
    margin-top: 3px;

    color: #758299;

    font-size: 11px;
}

.favorites-link .header-action-copy,
.cart-link .header-action-copy {
    justify-content: center;
}

.favorites-link .header-action-copy small,
.cart-link .header-action-copy small {
    display: none;
}


/* =========================================================
   CONTADOR DO CARRINHO
   ========================================================= */

.cart-link .cart-count {
    position: absolute;

    top: -10px;
    left: 18px;

    min-width: 22px;
    height: 22px;

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

    padding: 0 6px;

    border-radius: 999px;

    background: #0b91f0;
    color: #ffffff;

    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}


/* =========================================================
   MENU PRINCIPAL
   ========================================================= */

.nav-wrap {
    background: #ffffff;

    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #e4eaf2;
}

.main-nav {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.main-nav a {
    position: relative;

    padding: 22px 8px 20px;

    color: #0b1d3a;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}

.main-nav a:hover {
    color: #087ff0;
}

.main-nav a:first-of-type::after {
    content: "";

    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 0;

    height: 3px;

    border-radius: 999px;

    background: #159df6;
}

.categories-btn {
    min-height: 46px;

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

    gap: 8px;

    padding: 0 24px;

    border: 0;
    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #159df6,
            #087ff0
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 5px 12px rgba(21, 157, 246, 0.16);
}

.categories-icon {
    font-size: 17px;
}

.main-nav .promo {
    color: #ff3f48;
}


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

@media (max-width: 1180px) {

    .header-main {
        grid-template-columns:
            240px
            minmax(350px, 1fr)
            auto;

        gap: 20px;
    }

    .header-actions {
        gap: 18px;
    }

    .header-action-copy b {
        font-size: 12px;
    }

    .search {
        grid-template-columns:
            44px
            minmax(0, 1fr)
            180px
            58px;
    }
}


@media (max-width: 980px) {

    .topbar {
        justify-content: flex-start;

        overflow-x: auto;
    }

    .header-main {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .brand {
        justify-content: center;
    }

    .brand-logo {
        margin: 0 auto;
    }

    .search {
        width: 100%;
    }

    .header-actions {
        justify-content: center;
    }
}


@media (max-width: 620px) {

    .topbar {
        min-height: 38px;

        padding: 0 14px;

        font-size: 12px;
    }

    .header-main {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .brand-logo {
        height: 68px;
    }

    .search {
        height: 50px;

        grid-template-columns:
            42px
            minmax(0, 1fr)
            52px;

        border-radius: 14px;
    }

    .search select {
        display: none;
    }

    .search button {
        width: 52px;
        height: 50px;
    }

    .header-actions {
        width: 100%;

        justify-content: space-around;

        gap: 10px;
    }

    .header-action {
        flex-direction: column;

        gap: 4px;
    }

    .header-action-copy {
        align-items: center;
    }

    .header-action-copy small {
        display: none;
    }

    .header-action-icon svg {
        width: 24px;
        height: 24px;
    }

    .main-nav {
        min-height: 54px;

        overflow-x: auto;
    }

    .categories-btn {
        min-height: 42px;

        padding: 0 16px;
    }

    .main-nav a {
        padding-top: 18px;
        padding-bottom: 17px;
    }
}


/* =========================================================
   AJUSTE FINO - BUSCA E AÇÕES DO HEADER
   ========================================================= */

.header-main {
    grid-template-columns:
        280px
        minmax(500px, 1fr)
        370px;

    gap: 28px;
}


/* BUSCA */

.search {
    width: 100%;
    max-width: 920px;
    justify-self: stretch;

    grid-template-columns:
        52px
        minmax(0, 1fr)
        220px
        64px;
}


/* ÁREA CONTA / FAVORITOS / CARRINHO */

.header-actions {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 20px;
}

.header-action {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 10px;
}

.account-link {
    justify-content: flex-start;
}

.favorites-link {
    justify-content: center;
}

.cart-link {
    justify-content: flex-end;
}


/* ÍCONES */

.header-action-icon {
    width: 32px;
    height: 32px;
}

.header-action-icon svg {
    width: 29px;
    height: 29px;
}


/* TEXTOS */

.header-action-copy b {
    font-size: 14px;
    line-height: 1.1;
}

.header-action-copy small {
    font-size: 11px;
    line-height: 1.15;
}


/* CONTADOR DO CARRINHO */

.cart-link .cart-count {
    top: -13px;
    left: 17px;

    min-width: 22px;
    height: 22px;
}


/* =========================================================
   AJUSTE FINAL - BUSCA / CONTA / FAVORITOS / CARRINHO
   ========================================================= */

/* DISTRIBUIÇÃO PRINCIPAL */

.header-main {
    grid-template-columns:
        280px
        minmax(0, 1fr)
        330px;

    gap: 28px;
}


/* =========================================================
   BUSCA
   ========================================================= */

.search {
    width: 100%;
    height: 56px;

    grid-template-columns:
        54px
        minmax(0, 1fr)
        220px
        64px;

    border-radius: 999px;
}

.search-leading-icon {
    width: 54px;
}

.search-leading-icon svg {
    width: 22px;
    height: 22px;
}

.search input {
    padding-left: 0;
    font-size: 15px;
}

.search select {
    width: 220px;
    padding-left: 22px;
    padding-right: 18px;
}

.search button {
    width: 64px;
    height: 56px;
}

.search button svg {
    width: 23px;
    height: 23px;
}


/* =========================================================
   AÇÕES À DIREITA
   ========================================================= */

.header-actions {
    width: auto;

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

    gap: 30px;
}


/* cada conjunto fica compacto */

.header-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    width: auto;
}


/* ÍCONES */

.header-action-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;
}

.header-action-icon svg {
    width: 26px;
    height: 26px;

    stroke-width: 1.8;
}


/* TEXTOS */

.header-action-copy {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    line-height: 1.05;
}

.header-action-copy b {
    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}

.header-action-copy small {
    margin-top: 3px;

    font-size: 11px;
    font-weight: 400;

    white-space: nowrap;
}


/* =========================================================
   FAVORITOS
   ========================================================= */

.favorites-link {
    justify-content: flex-start;
}

.favorites-link .header-action-copy {
    display: block;
}


/* =========================================================
   CARRINHO
   ========================================================= */

.cart-link {
    position: relative;

    justify-content: flex-start;
}


/* corrige conflito com regra antiga .cart-link em */

.cart-link .cart-count {
    position: absolute;

    top: -12px;
    right: -10px;
    left: auto;

    width: 22px;
    min-width: 22px;
    height: 22px;

    padding: 0;

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

    border-radius: 50%;

    background: #0b91f0;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    font-style: normal;

    line-height: 1;
}


/* =========================================================
   BUSCA - AJUSTE PARA O NOVO LAYOUT
   ========================================================= */

.search {
    width: 100%;
    height: 52px;

    display: grid;
    grid-template-columns:
        50px
        minmax(0, 1fr)
        220px
        62px;

    align-items: center;

    overflow: hidden;

    background: #f8fafc;

    border: 1px solid #dfe6ef;
    border-radius: 28px;

    box-shadow: none;
}


/* lupa da esquerda */

.search-leading-icon {
    width: 50px;
    height: 52px;

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

    color: #0b1d3a;
}

.search-leading-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}


/* campo de texto */

.search input {
    width: 100%;
    height: 52px;

    padding: 0 14px 0 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #33445f;

    font-size: 15px;
    font-weight: 400;
}

.search input::placeholder {
    color: #7d899b;
}


/* categorias */

.search select {
    width: 220px;
    height: 52px;

    padding: 0 18px;

    border: 0;
    border-left: 1px solid #e5eaf1;

    outline: 0;

    background: #f8fafc;

    color: #53627a;

    font-size: 14px;

    cursor: pointer;
}


/* botão da lupa */

.search button {
    width: 62px;
    height: 52px;

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

    padding: 0;

    border: 0;

    background: #1597ef;

    color: #ffffff;

    cursor: pointer;
}

.search button svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* =========================================================
   HERO / BANNER - LAYOUT FINAL CLARO
   ========================================================= */

.hero {
    position: relative;

    min-height: 400px;
    height: 400px;

    margin-top: 16px;

    overflow: hidden;

    border: 1px solid #edf1f6;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(15, 35, 65, 0.08);
}

.hero-track {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    min-height: 400px;

    display: none;

    background: #ffffff;
}

.hero-slide.active {
    display: block;
}


/* =========================================================
   BLOCO DE TEXTO
   ========================================================= */

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

    width: 30%;
    height: 100%;
    min-height: 400px;

    padding:
        44px
        36px
        38px
        64px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    background: #ffffff;

    color: #0b1d3a;
}

.hero .tag {
    margin: 0 0 16px;

    padding: 7px 14px;

    border-radius: 999px;

    background: #eaf5ff;
    color: #087ff0;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.hero h1 {
    margin: 0 0 18px;

    max-width: 390px;

    color: #0b1d3a;

    font-size: 38px;
    font-weight: 900;

    line-height: 1.02;

    letter-spacing: -0.035em;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    margin-top: 3px;

    color: #087ff0;
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.hero p {
    max-width: 370px;

    margin: 0 0 24px;

    color: #66758d;

    font-size: 15px;

    line-height: 1.55;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: nowrap;
}

.hero-buttons .btn {
    min-height: 48px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 900;

    white-space: nowrap;
}

.hero-buttons .btn.primary {
    gap: 8px;

    border: 1px solid #1597ef;

    background: #1597ef;
    color: #ffffff;

    box-shadow:
        0 6px 14px rgba(21, 151, 239, 0.18);
}

.hero-buttons .btn.ghost {
    border: 1px solid #8ea0b7;

    background: #ffffff;
    color: #0b1d3a;
}

.hero-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   IMAGEM
   ========================================================= */

.hero-art {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 72%;

    overflow: hidden;

    background: #f4f6f8;
}

.hero-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    display: block;

    transform: none;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   SETAS
   ========================================================= */

.hero-arrow {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 46px;
    height: 46px;

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

    padding: 0;

    border: 1px solid #e2e7ee;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: #0b1d3a;

    font-size: 34px;
    line-height: 1;

    box-shadow:
        0 6px 18px rgba(15, 35, 65, 0.10);

    cursor: pointer;

    translate: 0 -50%;
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}


/* =========================================================
   INDICADORES
   ========================================================= */

.hero-dots {
    position: absolute;

    z-index: 6;

    left: 50%;
    bottom: 16px;

    display: flex;

    gap: 7px;

    translate: -50% 0;
}

.hero-dots button {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(125, 137, 155, 0.35);
}

.hero-dots button.active {
    width: 24px;

    border-radius: 999px;

    background: #1597ef;
}


/* =========================================================
   RESPONSIVO DO BANNER
   ========================================================= */

@media (max-width: 980px) {

    .hero-content {
        width: 42%;

        padding-left: 48px;
        padding-right: 28px;
    }

    .hero-art {
        width: 64%;
    }

    .hero h1 {
        font-size: 32px;
    }
}


@media (max-width: 620px) {

    .hero {
        height: 480px;
        min-height: 480px;
    }

    .hero-track,
    .hero-slide {
        height: 480px;
        min-height: 480px;
    }

    .hero-art {
        top: 0;

        width: 100%;
        height: 58%;
    }

    .hero-content {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: auto;
        min-height: 48%;

        padding:
            24px
            42px
            34px;

        background:
            linear-gradient(
                0deg,
                #ffffff 70%,
                rgba(255, 255, 255, 0.96) 85%,
                rgba(255, 255, 255, 0) 100%
            );

        justify-content: flex-end;
    }

    .hero h1 {
        font-size: 27px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        min-height: 44px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;

        font-size: 28px;
    }
}


/* =========================================================
   CORREÇÃO - IMAGEM DO BANNER OCUPANDO TODO O LADO DIREITO
   ========================================================= */

/* =========================================================
   HERO - IMAGEM INTEGRADA AO FUNDO
   ========================================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    overflow: hidden;

    background: #ffffff;
}


/* IMAGEM OCUPA O BANNER INTEIRO */

.hero-art {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #ffffff;
}

.hero-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: none;
}


/* DEGRADÊ CLARO DO LADO ESQUERDO */

.hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,0.98) 18%,
            rgba(255,255,255,0.90) 27%,
            rgba(255,255,255,0.62) 36%,
            rgba(255,255,255,0.18) 48%,
            rgba(255,255,255,0) 60%
        );
}


/* TEXTO SOBRE O BANNER */

.hero-content {
    position: relative;

    z-index: 2;

    width: 36%;
    height: 100%;
    min-height: 400px;

    padding:
        42px
        30px
        38px
        68px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    background: transparent;

    color: #0b1d3a;
}


/* =========================================================
   HERO - TIPOGRAFIA DA REFERÊNCIA
   ========================================================= */

.hero .tag {
    margin-bottom: 16px;

    padding: 0;

    background: transparent;

    color: #1597ef;

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* PRODUTOS 3D / EXCLUSIVOS */

.hero h1 {
    max-width: 430px;

    margin: 0 0 18px;

    font-family: Inter, Arial, sans-serif;

    font-size: 44px;
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.035em;

    color: #0b1d3a;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    margin-top: 2px;

    color: #168eea;

    font-size: inherit;
    font-weight: 800;
}


/* DESCRIÇÃO */

.hero p {
    max-width: 440px;

    margin: 0 0 24px;

    font-family: Inter, Arial, sans-serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.55;

    color: #68778d;
}


/* =========================================================
   CORREÇÃO - IMAGENS DOS PRODUTOS NA HOME
   ========================================================= */

/* CARD PRINCIPAL - MAIS VENDIDOS */

.product-image {
    height: 130px;

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

    margin-top: 15px;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        #f8fafc,
        #ffffff
    );

    border-radius: 13px;
}

.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    border-radius: 13px;
}


/* =========================================================
   NOVIDADES / PROMOÇÕES / LANÇAMENTOS
   ========================================================= */

.mini-list span {
    grid-row: 1 / 3;

    width: 62px;
    height: 62px;

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

    padding: 5px;

    overflow: hidden;

    background: #f5f8fc;

    border-radius: 12px;

    text-align: center;
    font-size: 38px;
}

.mini-list span img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    border-radius: 8px;
}


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

@media (max-width: 620px) {

    .product-image {
        height: 104px;
    }

    .product-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .mini-list span {
        width: 58px;
        height: 58px;
    }
}