:root{
  --navy:#073b59;--navy-dark:#052e46;--teal:#1a9b91;--teal-dark:#12766f;
  --mint:#e9f7f5;--orange:#f47c2f;--text:#173548;--muted:#6c7f89;
  --line:#dce8eb;--white:#fff;--soft:#f7fbfb;--shadow:0 14px 40px rgba(5,46,70,.08);
}
.checkout-payment-button{width:100%;margin-top:16px}.checkout-payment-button[hidden]{display:none}.checkout-payment-button:disabled{cursor:not-allowed;opacity:.62}
*{box-sizing:border-box} html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:16px;line-height:1.5;color:var(--text);background:#fff;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
a{text-decoration:none;color:inherit} button,input{font:inherit}
.container{width:min(1180px,92%);margin:auto}
.topbar{background:var(--navy-dark);color:#fff;font-size:13px;font-weight:700}
.topbar-grid{min-height:44px;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;align-items:center;text-align:center}
.header{background:#fff;position:sticky;top:0;z-index:50;box-shadow:0 4px 20px rgba(0,0,0,.04)}
.header-row{min-height:118px;display:grid;grid-template-columns:auto 1fr auto;gap:32px;align-items:center}
.brand{display:flex;align-items:center;gap:16px}
.brand img{width:94px;height:94px;border-radius:50%;object-fit:cover}
.brand div{display:flex;flex-direction:column}
.brand strong{font-size:29px;color:var(--navy);letter-spacing:.05em;line-height:1.1}
.brand small{font-size:13px;font-weight:800;color:var(--teal);letter-spacing:.08em;margin-top:4px}
.search{height:52px;border:1px solid #b9d7d5;border-radius:10px;display:flex;overflow:hidden}
.search input{flex:1;border:0;outline:0;padding:0 18px;font-size:16px}
.search button{width:60px;border:0;background:linear-gradient(135deg,var(--teal),#31b8ad);color:white;font-size:26px;cursor:pointer}
.header-actions{display:flex;gap:24px}
.header-actions a{position:relative;display:flex;flex-direction:column;align-items:center;font-size:26px;color:var(--navy)}
.header-actions span{font-size:13px;font-weight:700;margin-top:5px;white-space:nowrap}
.test-cart-count{position:absolute;right:3px;top:-5px;min-width:20px;height:20px;padding:0 5px;border:2px solid #fff;border-radius:999px;display:grid;place-items:center;background:var(--orange);color:#fff;font-size:10px;line-height:1}
.menu-toggle{display:none;border:0;background:transparent;font-size:28px;color:var(--navy)}
.nav{border-top:1px solid #eef4f5}
.nav-row{min-height:62px;display:flex;align-items:center;gap:6px}
.nav a{padding:20px 17px;font-size:15px;font-weight:700}
.nav a:hover{color:var(--teal)}
.all-cats{border-right:1px solid var(--line);padding-right:26px!important}
.offer-link{margin-left:auto;color:var(--orange)!important}
.hero{
  position:relative;
  min-height:470px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:#edf8f6;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  width:100%;
  max-width:2400px;
  margin:0 auto;
  background:url("assets/banner-home.png") 60% center / cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(243,251,250,.98) 0%,
    rgba(243,251,250,.94) 30%,
    rgba(243,251,250,.72) 48%,
    rgba(243,251,250,.26) 64%,
    rgba(243,251,250,.04) 78%
  );
}

.hero-grid{
  position:relative;
  z-index:1;
  width:min(1180px,92%);
  min-height:470px;
  margin:0 auto;
  display:flex;
  align-items:center;
}

.hero-copy{
  width:min(100%,560px);
  max-width:560px;
  padding:28px 0;
}

.eyebrow{
  display:block;
  color:var(--teal-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  line-height:1.4;
  margin-bottom:14px;
}

.hero h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(44px,4.4vw,60px);
  font-weight:700;
  line-height:1.06;
  letter-spacing:-.03em;
  text-wrap:balance;
}

.hero h1 em{
  font-style:normal;
  color:var(--teal);
}

.hero p{
  max-width:540px;
  margin:16px 0 0;
  color:#344f5d;
  font-size:20px;
  font-weight:400;
  line-height:1.6;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:20px;
}

.btn{
  min-height:46px;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:700;
  line-height:1;
  transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--teal-dark),var(--teal));
  box-shadow:0 8px 20px rgba(18,118,111,.2);
}

.btn-outline{
  color:var(--navy);
  background:rgba(255,255,255,.72);
  border-color:rgba(7,59,89,.24);
}

.btn-light{
  color:var(--teal-dark);
  background:#fff;
}

.hero-benefits{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
  color:#334f5d;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
}

.hero-media{
  display:none;
}

.hero-media img{
  display:block;
  width:100%;
  height:auto;
}

.section{padding:72px 0}
.section-heading{text-align:center;max-width:720px;margin:0 auto 34px}
.section-heading>span,.products-title span,.b2b-copy>span{color:var(--teal);font-size:12px;font-weight:900;letter-spacing:.14em}
.section-heading h2,.products-title h2,.b2b h2{color:var(--navy);margin:8px 0 10px;font-size:clamp(28px,3.5vw,42px);letter-spacing:-.03em}
.section-heading p{color:var(--muted);margin:0}
.universe-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.universe-card{border:1px solid var(--line);border-radius:14px;padding:22px;background:linear-gradient(180deg,#fff,#f8fcfc);box-shadow:0 8px 24px rgba(5,46,70,.04);min-height:260px;display:flex;flex-direction:column}
.u-icon{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:var(--mint);color:var(--teal);font-size:27px;margin-bottom:16px}
.universe-card h3{margin:0 0 8px;color:var(--navy)}
.universe-card p{margin:0 0 18px;color:var(--muted);line-height:1.55;font-size:13px}
.universe-card a{margin-top:auto;color:var(--teal);font-size:12px;font-weight:900;text-transform:uppercase}
.trust-strip{background:var(--navy-dark);color:#fff;border-radius:16px;padding:25px 28px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.trust-strip div{display:flex;flex-direction:column;gap:4px}.trust-strip strong{font-size:14px}.trust-strip span{font-size:12px;color:rgba(255,255,255,.72)}
.deals-section{background:#fbfdfd}
.deals-grid{display:grid;grid-template-columns:320px 1fr;gap:24px}
.deal-banner{background:linear-gradient(145deg,var(--teal-dark),#2eb5aa);color:#fff;border-radius:18px;padding:32px;display:flex;flex-direction:column;justify-content:center;min-height:390px;box-shadow:var(--shadow)}
.deal-banner span{font-size:11px;font-weight:900;letter-spacing:.14em;color:#d9fffb}
.deal-banner h2{font-size:34px;line-height:1.08;margin:10px 0}.deal-banner p{line-height:1.6;color:rgba(255,255,255,.82)}
.deal-banner .btn{align-self:flex-start;margin-top:10px}
.products-title{display:flex;align-items:end;justify-content:space-between;margin-bottom:16px}
.products-title h2{font-size:32px;margin-bottom:0}.products-title>a{color:var(--teal);font-weight:900;font-size:12px}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.product-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px;display:flex;flex-direction:column}
.product-img{height:180px;border-radius:10px;display:grid;place-items:center;margin-bottom:14px;font-weight:900;letter-spacing:.08em;color:var(--navy)}
.p1{background:linear-gradient(145deg,#e5f1f0,#d9e8e5)}.p2{background:linear-gradient(145deg,#e8efe9,#dfe8df)}
.p3{background:linear-gradient(145deg,#f0f4f5,#e6eef0)}.p4{background:linear-gradient(145deg,#f3efe9,#eee5d9)}
.product-card small{color:var(--teal);font-weight:800}.product-card h3{margin:6px 0 4px;color:var(--navy)}
.product-card p{font-size:12px;color:var(--muted);margin:0 0 10px}.product-card strong{font-size:14px;color:var(--navy);margin-bottom:12px}
.product-card button{margin-top:auto;border:1px solid var(--teal);background:#fff;color:var(--teal-dark);border-radius:7px;min-height:38px;font-weight:800;cursor:pointer}
.b2b{margin:70px auto;padding:32px;border-radius:18px;background:linear-gradient(90deg,#edf9f7,#f7fbfb);display:grid;grid-template-columns:1.2fr 1.7fr auto;gap:28px;align-items:center;border:1px solid #dceceb}
.b2b h2{font-size:30px}.b2b p{color:var(--muted);line-height:1.55;margin:0}
.b2b-benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;color:var(--navy);font-size:13px;font-weight:700}
.footer{background:var(--navy-dark);color:#fff;padding:46px 0}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:28px}
.footer-brand{display:flex;align-items:center;gap:14px}.footer-brand img{width:64px;height:64px;border-radius:50%;object-fit:cover}
.footer-brand div{display:flex;flex-direction:column}.footer-brand span,.footer div>span{font-size:12px;color:rgba(255,255,255,.65);line-height:1.55}
.footer a{display:block;margin-top:8px;color:rgba(255,255,255,.75);font-size:13px}
@media(max-width:860px){
  .topbar-grid{grid-template-columns:repeat(2,1fr)}
  .topbar-grid span:nth-child(n+3){display:none}

  .header-row{
    grid-template-columns:1fr auto;
    gap:14px;
    min-height:104px
  }

  .brand img{width:78px;height:78px}
  .brand strong{font-size:25px}

  .header-actions{display:none}
  .menu-toggle{display:block;justify-self:end}

  .search{
    grid-column:1/-1;
    order:3;
    height:50px;
    margin-bottom:14px
  }

  .nav-row{
    min-height:auto;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 0 14px
  }

  .nav-row.open{display:flex}
  .nav a{padding:12px 0;font-size:15px}
  .all-cats{border-right:0;padding-right:0!important}
  .offer-link{margin-left:0}
}

@media(max-width:980px){
  .hero,
  .hero-grid{min-height:450px}

  .hero::before{background-position:66% center}

  .hero::after{
    background:linear-gradient(
      90deg,
      rgba(243,251,250,.98) 0%,
      rgba(243,251,250,.94) 38%,
      rgba(243,251,250,.62) 60%,
      rgba(243,251,250,.12) 82%
    )
  }

  .hero-copy{
    width:min(100%,520px);
    max-width:520px;
    padding:28px 0
  }

  .hero h1{font-size:clamp(40px,6vw,50px);line-height:1.08}
  .hero p{font-size:18px}

  .universe-grid{grid-template-columns:repeat(3,1fr)}
  .deals-grid{grid-template-columns:1fr}
  .deal-banner{min-height:280px}
  .b2b{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:700px){
  .topbar-grid{grid-template-columns:1fr}
  .topbar-grid span:nth-child(n+2){display:none}

  .header-row{
    grid-template-columns:1fr auto;
    gap:12px;
    min-height:94px
  }

  .brand{gap:12px}
  .brand img{width:68px;height:68px}
  .brand strong{font-size:23px}
  .brand small{display:none}

  .search{margin-bottom:14px}

  .hero{
    min-height:auto;
    display:block;
    background:#f3fbfa
  }

  .hero::before,
  .hero::after{display:none}

  .hero-grid{
    width:min(1180px,92%);
    min-height:auto;
    display:grid;
    align-items:start;
    margin:0 auto;
    padding:42px 0 0
  }

  .hero-copy{
    width:100%;
    max-width:540px;
    padding:0
  }

  .hero h1{
    font-size:clamp(36px,10.5vw,44px);
    line-height:1.1
  }

  .hero p{
    max-width:460px;
    margin-top:16px;
    font-size:18px;
    line-height:1.6
  }

  .hero-actions{margin-top:22px}

  .hero-benefits{
    gap:10px 16px;
    margin-top:18px;
    font-size:13.5px
  }

  .hero-media{
    display:block;
    width:100%;
    margin-top:30px;
    overflow:hidden;
    border-radius:16px 16px 0 0
  }

  .hero-media img{
    width:100%;
    max-width:none;
    height:auto;
    border-radius:0;
    box-shadow:none;
    object-fit:contain
  }

  .universe-grid,
  .product-grid,
  .trust-strip,
  .footer-grid{grid-template-columns:1fr}

  .section{padding:54px 0}
  .products-title{align-items:center}
}

/* Quem somos */
.about-page{background:#fff}
.about-hero{position:relative;overflow:hidden;padding:84px 0;background:linear-gradient(135deg,#eef9f7 0%,#f8fcfc 58%,#e9f4f3 100%)}
.about-hero::before{content:"";position:absolute;width:420px;height:420px;right:-130px;top:-170px;border-radius:50%;background:rgba(26,155,145,.09)}
.about-hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:72px;align-items:center}
.about-kicker,.about-heading>span,.about-purpose-copy>span,.about-b2b span{display:block;color:var(--teal-dark);font-size:12px;font-weight:800;letter-spacing:.16em}
.about-hero h1{max-width:720px;margin:12px 0 20px;color:var(--navy);font-size:clamp(46px,5vw,68px);font-weight:700;line-height:1.04;letter-spacing:-.045em;text-wrap:balance}
.about-hero-copy>p{max-width:700px;margin:0;color:#385565;font-size:20px;line-height:1.7}
.about-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.about-brand-card{position:relative;padding:38px;border:1px solid rgba(26,155,145,.2);border-radius:24px;background:rgba(255,255,255,.82);box-shadow:0 24px 70px rgba(5,46,70,.12);text-align:center;backdrop-filter:blur(8px)}
.about-brand-card img{width:176px;height:176px;border-radius:50%;object-fit:cover}
.about-brand-card strong{display:block;margin-top:18px;color:var(--navy);font-size:30px;letter-spacing:.08em}
.about-brand-card>span{display:block;margin-top:4px;color:var(--teal-dark);font-size:13px;font-weight:800;letter-spacing:.12em}
.about-brand-card p{margin:20px 0 0;color:var(--muted);font-size:15px;line-height:1.7}
.about-section{padding:88px 0}
.about-heading{max-width:760px;margin:0 auto 40px;text-align:center}
.about-heading h2,.about-purpose h2,.about-b2b h2{margin:10px 0 14px;color:var(--navy);font-size:clamp(34px,4vw,50px);line-height:1.1;letter-spacing:-.035em}
.about-heading p{margin:0;color:var(--muted);font-size:18px;line-height:1.7}
.about-pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.about-pillar-card{min-height:310px;padding:32px;border:1px solid var(--line);border-radius:20px;background:linear-gradient(180deg,#fff,#f8fcfc);box-shadow:0 12px 36px rgba(5,46,70,.06)}
.about-icon{width:66px;height:66px;border-radius:18px;display:grid;place-items:center;background:var(--mint);color:var(--teal-dark);font-size:31px}
.about-pillar-card h3{margin:22px 0 10px;color:var(--navy);font-size:26px}
.about-pillar-card p{margin:0;color:var(--muted);font-size:16px;line-height:1.7}
.about-purpose{padding:88px 0;background:var(--navy-dark);color:#fff}
.about-purpose-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.about-purpose-copy>span{color:#73d4cc}
.about-purpose h2{color:#fff}
.about-purpose-copy p{max-width:640px;margin:16px 0 0;color:rgba(255,255,255,.76);font-size:17px;line-height:1.75}
.about-principles{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.about-principles div{min-height:150px;padding:24px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.06)}
.about-principles strong{display:block;color:#fff;font-size:17px}
.about-principles span{display:block;margin-top:8px;color:rgba(255,255,255,.68);font-size:14px;line-height:1.6}
.about-values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.about-values-grid article{padding:28px;border-top:4px solid var(--teal);border-radius:4px 4px 16px 16px;background:#f7fbfb}
.about-values-grid strong{color:var(--navy);font-size:20px}
.about-values-grid p{margin:10px 0 0;color:var(--muted);font-size:14px;line-height:1.65}
.about-b2b{margin:0 auto 88px;padding:42px;border:1px solid #d5e9e6;border-radius:22px;background:linear-gradient(120deg,#eaf8f6,#f8fcfc);display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center}
.about-b2b h2{max-width:780px;font-size:36px}
.about-b2b p{max-width:820px;margin:0;color:var(--muted);font-size:16px;line-height:1.7}
.about-closing{padding:56px 0;background:#f8fbfb;text-align:center;border-top:1px solid #e8f1f2}
.about-closing img{width:72px;height:72px;border-radius:50%;object-fit:cover}
.about-closing p{max-width:760px;margin:18px auto 0;color:var(--navy);font-size:24px;font-weight:600;line-height:1.5}

@media(max-width:980px){
  .about-hero{padding:64px 0}
  .about-hero-grid{grid-template-columns:1fr;gap:42px}
  .about-hero-copy{text-align:center}
  .about-hero h1,.about-hero-copy>p{margin-left:auto;margin-right:auto}
  .about-actions{justify-content:center}
  .about-brand-card{width:min(520px,100%);margin:auto}
  .about-purpose-grid{grid-template-columns:1fr;gap:42px}
  .about-values-grid{grid-template-columns:repeat(2,1fr)}
  .about-b2b{grid-template-columns:1fr}
  .about-b2b .btn{justify-self:start}
}

@media(max-width:700px){
  .about-hero{padding:50px 0}
  .about-hero h1{font-size:clamp(38px,11vw,48px)}
  .about-hero-copy>p{font-size:18px}
  .about-brand-card{padding:28px 22px}
  .about-brand-card img{width:142px;height:142px}
  .about-section,.about-purpose{padding:64px 0}
  .about-pillar-grid,.about-principles,.about-values-grid{grid-template-columns:1fr}
  .about-pillar-card{min-height:auto;padding:26px}
  .about-heading h2,.about-purpose h2{font-size:34px}
  .about-b2b{margin-bottom:64px;padding:30px 24px}
  .about-b2b h2{font-size:30px}
  .about-b2b .btn{justify-self:stretch}
  .about-closing p{font-size:20px}
}

/* Presença digital */
.about-digital{padding:88px 0;background:linear-gradient(135deg,#f2faf8,#fbfdfd)}
.about-digital-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center}
.about-digital-copy>span{display:block;color:var(--teal-dark);font-size:12px;font-weight:800;letter-spacing:.16em}
.about-digital-copy h2{margin:10px 0 16px;color:var(--navy);font-size:clamp(34px,4vw,50px);line-height:1.1;letter-spacing:-.035em}
.about-digital-copy p{margin:0;color:var(--muted);font-size:17px;line-height:1.75}
.about-digital-copy small{display:block;margin-top:18px;color:#4d6875;font-size:13px;line-height:1.6}
.marketplace-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.marketplace-card{min-height:190px;padding:24px;border:1px solid #d8e8e7;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(5,46,70,.05)}
.marketplace-mark{width:48px;height:48px;border-radius:13px;display:grid;place-items:center;background:var(--mint);color:var(--teal-dark);font-size:15px;font-weight:800}
.marketplace-card strong{display:block;margin-top:17px;color:var(--navy);font-size:19px}
.marketplace-card span{display:block;margin-top:4px;color:var(--muted);font-size:13px}
.marketplace-card a{display:inline-block;margin-top:14px;color:var(--teal-dark);font-size:13px;font-weight:800}

@media(max-width:980px){
  .about-digital-grid{grid-template-columns:1fr;gap:40px}
}

@media(max-width:700px){
  .about-digital{padding:64px 0}
  .marketplace-grid{grid-template-columns:1fr}
  .marketplace-card{min-height:auto}
}



/* Catálogo de Bíblias */
.faith-directory{padding:34px 0;background:var(--navy-dark);color:#fff}
.faith-directory-heading{display:flex;align-items:end;justify-content:space-between;gap:28px;margin-bottom:22px}
.faith-directory-heading span,.catalog-heading>div>span,.catalog-main-heading span,.catalog-support span{display:block;color:#6fd3ca;font-size:12px;font-weight:800;letter-spacing:.15em}
.faith-directory-heading h2{margin:7px 0 0;color:#fff;font-size:clamp(25px,3vw,34px);line-height:1.15}
.faith-directory-heading>a{color:#fff;font-size:13px;font-weight:800;white-space:nowrap}
.faith-subcategories{display:flex;flex-wrap:wrap;gap:10px}
.faith-subcategories a{padding:10px 14px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.07);color:rgba(255,255,255,.9);font-size:13px;font-weight:700;transition:.2s ease}
.faith-subcategories a:hover{background:#fff;color:var(--navy-dark);transform:translateY(-1px)}
.catalog-section{padding:82px 0;background:#fff}
.catalog-section-alt{background:#f4faf9}
.catalog-section-books{background:linear-gradient(180deg,#f4faf9,#fff)}
.catalog-section-toys{background:linear-gradient(180deg,#f6fbfa,#fff)}
.catalog-heading{display:flex;align-items:end;justify-content:space-between;gap:36px;margin-bottom:30px}
.catalog-heading>div>span,.catalog-main-heading span,.catalog-support span{color:var(--teal-dark)}
.catalog-heading h2,.catalog-main-heading h2,.catalog-support h2{margin:7px 0 8px;color:var(--navy);font-size:clamp(30px,3.8vw,44px);line-height:1.1;letter-spacing:-.035em}
.catalog-heading p,.catalog-main-heading p{margin:0;color:var(--muted);font-size:16px}
.catalog-heading-link{color:var(--teal-dark);font-size:14px;font-weight:800;white-space:nowrap}
.catalog-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.featured-books-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.catalog-product-card{min-width:0;overflow:hidden;border:1px solid #dbe8e9;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(5,46,70,.055);display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.catalog-product-card:hover{transform:translateY(-4px);border-color:#b9d9d6;box-shadow:0 18px 44px rgba(5,46,70,.11)}
.catalog-product-image{position:relative;aspect-ratio:4/4.35;overflow:hidden;background:linear-gradient(145deg,#f2f8f7,#e5f0ef)}
.catalog-product-image img{display:block;width:100%;height:100%;object-fit:cover}
.catalog-product-card[data-category="brinquedos-infantis"] .catalog-product-image{background:#fff}
.catalog-product-card[data-category="brinquedos-infantis"] .catalog-product-image img{object-fit:contain;padding:10px}
.catalog-product-card:is([data-category="cozinha"],[data-category="utilidades-domesticas"]) .catalog-product-image{background:#fff}
.catalog-product-card:is([data-category="cozinha"],[data-category="utilidades-domesticas"]) .catalog-product-image img{object-fit:contain;padding:10px}
.catalog-product-card[data-category^="biblias"] .catalog-product-image{background:#fff}
.catalog-product-card[data-category^="biblias"] .catalog-product-image img{object-fit:contain;padding:10px}
/* Compensa a margem branca incorporada nas fotos de quatro capas da SBB. */
.catalog-product-card:is(
  #biblia-mulher-naa-laranja,
  #biblia-naa-mulher-pink-grande,
  #biblia-arc-mulher-supergigante-rosa-marrom,
  #biblia-naa-mulher-flores-grande
) .catalog-product-image img{transform:scale(1.58);transform-origin:center 44%}
.catalog-product-card[data-category="livros-cristaos"] .catalog-product-image{background:#fff}
.catalog-product-card[data-category="livros-cristaos"] .catalog-product-image img{object-fit:contain;padding:10px}
.catalog-product-image>span{position:absolute;left:14px;right:14px;bottom:14px;min-height:38px;padding:9px 12px;border-radius:9px;display:flex;align-items:center;justify-content:center;background:rgba(5,46,70,.92);color:#fff;font-family:Inter,system-ui,sans-serif;font-size:12.5px;font-weight:700;line-height:1.3;letter-spacing:.005em;text-align:center;backdrop-filter:blur(4px)}
.catalog-product-badge{position:absolute;top:12px;right:12px;z-index:1;padding:7px 10px;border-radius:999px;background:#f28c28;color:#fff;font-size:11px;font-weight:800;line-height:1;letter-spacing:.035em;text-transform:uppercase;box-shadow:0 5px 14px rgba(102,52,4,.2)}
.catalog-product-content{flex:1;padding:19px;display:flex;flex-direction:column}
.catalog-product-content small,.product-category-label{color:var(--teal-dark);font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.catalog-product-content h3{margin:8px 0;color:var(--navy);font-size:18px;line-height:1.3;letter-spacing:-.015em}
.catalog-product-meta{display:block;margin:-1px 0 11px;color:#4c6875;font-size:12px;font-weight:700;line-height:1.45}
.catalog-product-content p{margin:0 0 16px;color:var(--muted);font-size:13px;line-height:1.6}
.catalog-product-price{margin-top:auto;display:flex;flex-direction:column;align-items:flex-start;gap:2px;color:var(--navy)}
.product-price-original{color:var(--muted);font-size:12px;font-weight:700}
.product-price-current{color:var(--navy);font-size:18px;font-weight:850;line-height:1.25}
.product-price-pending{font-size:13px}
.catalog-product-cart{position:relative;min-width:0;min-height:42px;margin-top:14px;display:grid;grid-template-columns:minmax(0,108px) 42px;align-items:center;justify-content:space-between;gap:10px}
.catalog-card-quantity{height:38px;display:grid;grid-template-columns:36px 36px 36px;align-items:stretch}
.catalog-card-quantity button,.catalog-card-quantity output{min-width:0;border:1px solid #c8ddda;display:grid;place-items:center;background:#fff;color:var(--navy);font:800 13px/1 Inter,system-ui,sans-serif}
.catalog-card-quantity button{margin:0;padding:0;cursor:pointer;transition:background .2s ease,color .2s ease,border-color .2s ease}
.catalog-card-quantity button:first-child{border-radius:9px 0 0 9px}
.catalog-card-quantity button:last-child{border-radius:0 9px 9px 0}
.catalog-card-quantity output{border-width:1px 0}
.catalog-card-quantity button:hover:not(:disabled){border-color:var(--teal);background:#edf8f6;color:var(--teal-dark)}
.catalog-card-quantity button:disabled{cursor:not-allowed;opacity:.42}
.catalog-card-add{width:42px;height:42px;margin:0;padding:0;border:1px solid var(--teal);border-radius:10px;display:grid;place-items:center;background:var(--teal);color:#fff;cursor:pointer;box-shadow:0 7px 18px rgba(14,126,118,.17);transition:transform .2s ease,background .2s ease,border-color .2s ease,opacity .2s ease}
.catalog-card-add svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.catalog-card-add:hover:not(:disabled){background:var(--teal-dark);transform:translateY(-1px)}
.catalog-card-add:disabled{cursor:not-allowed;box-shadow:none;opacity:.38}
.catalog-card-add.is-added{border-color:#2e8b57;background:#2e8b57;transform:scale(.96)}
.catalog-card-feedback{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.catalog-product-view{width:100%;min-height:42px;margin-top:12px;border:1px solid var(--teal);border-radius:9px;background:#fff;color:var(--teal-dark);font-size:14px;font-weight:800;cursor:pointer;transition:.2s ease}
.catalog-product-view:hover{background:var(--teal);color:#fff}
.catalog-section-action{display:flex;justify-content:center;margin-top:32px}
.deal-banner-wide{min-height:280px;max-width:none;padding:44px;background:linear-gradient(115deg,var(--teal-dark),#28aaa0 62%,var(--navy));}
.deal-banner-wide h2{max-width:700px}
.deal-banner-wide p{max-width:700px}
.catalog-hero{position:relative;overflow:hidden;padding:76px 0;background:linear-gradient(130deg,#edf9f7,#fff 68%)}
.catalog-hero::after{content:"✦";position:absolute;right:7%;top:10%;color:rgba(26,155,145,.08);font-size:270px;line-height:1}
.catalog-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.4fr .6fr;gap:64px;align-items:center}
.catalog-hero-grid>div:first-child>span{color:var(--teal-dark);font-size:12px;font-weight:800;letter-spacing:.15em}
.catalog-hero h1{max-width:780px;margin:10px 0 18px;color:var(--navy);font-size:clamp(42px,5vw,62px);line-height:1.04;letter-spacing:-.045em}
.catalog-hero-grid>div:first-child>p{max-width:690px;margin:0;color:#42606e;font-size:19px;line-height:1.65}
.catalog-hero-note{padding:28px;border:1px solid #d4e9e6;border-radius:18px;background:rgba(255,255,255,.8);box-shadow:var(--shadow)}
.catalog-hero-note strong{color:var(--navy);font-size:18px}
.catalog-hero-note p{margin:9px 0 0;color:var(--muted);font-size:14px;line-height:1.65}
.catalog-hero-casa{min-height:470px;padding:0;display:grid;align-items:center;background:#f4f6f5 url("assets/banner-casa.webp") center center/cover no-repeat}
.catalog-hero-casa::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(250,252,252,.98) 0%,rgba(250,252,252,.94) 28%,rgba(250,252,252,.7) 43%,rgba(250,252,252,.12) 61%,rgba(250,252,252,0) 76%)}
.catalog-hero-casa::after{display:none}
.catalog-hero-casa .catalog-hero-grid{width:min(1180px,92%);min-height:470px;margin:0 auto;grid-template-columns:minmax(0,570px) 1fr;gap:0}
.catalog-hero-casa-copy{padding:44px 0}
.catalog-hero-casa .catalog-hero-note{width:min(100%,400px);max-width:400px;margin:0;justify-self:end;padding:22px 24px;background:rgba(255,255,255,.9);backdrop-filter:blur(7px);box-shadow:0 12px 32px rgba(5,46,70,.1)}
.catalog-hero-casa .catalog-hero-note strong{font-size:16px}
.catalog-hero-casa .catalog-hero-note p{font-size:13px}
.catalog-hero-casa-mobile{display:none}
.catalog-main{padding:78px 0}
.catalog-main-heading{margin-bottom:24px}
.catalog-filters{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:32px}
.catalog-filter{min-height:40px;padding:0 15px;border:1px solid #cadedd;border-radius:999px;background:#fff;color:var(--navy);font-size:13px;font-weight:700;cursor:pointer}
.catalog-filter:hover,.catalog-filter.is-active{border-color:var(--teal);background:var(--teal);color:#fff}
.catalog-empty{grid-column:1/-1;min-height:220px;padding:34px;border:1px dashed #bcd4d2;border-radius:18px;display:grid;place-content:center;text-align:center;background:#f7fbfb}
.catalog-empty strong{color:var(--navy);font-size:20px}
.catalog-empty span{margin-top:8px;color:var(--muted);font-size:14px}
.catalog-support{margin:0 auto 78px;padding:38px;border:1px solid #d7e9e7;border-radius:20px;background:linear-gradient(115deg,#ecf8f6,#fbfdfd);display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center}
.catalog-support h2{font-size:34px}
.catalog-support p{max-width:790px;margin:0;color:var(--muted);line-height:1.7}
.product-dialog{width:min(1080px,94%);max-height:92vh;padding:0;border:0;border-radius:22px;box-shadow:0 32px 90px rgba(3,35,53,.3);overflow:auto}
.product-dialog::backdrop{background:rgba(3,35,53,.68);backdrop-filter:blur(3px)}
.product-dialog-close{position:absolute;right:16px;top:16px;z-index:2;width:42px;height:42px;border:1px solid #d6e5e6;border-radius:50%;background:#fff;color:var(--navy);font-size:25px;cursor:pointer}
.product-dialog-grid{display:grid;grid-template-columns:minmax(360px,.86fr) minmax(0,1.14fr)}
.product-dialog-media{position:relative;min-height:680px;background:#edf6f5}
.product-dialog-media #product-dialog-image{display:block;width:100%;height:100%;object-fit:cover}
.product-dialog-badge{position:absolute;left:24px;top:24px;padding:8px 13px;border-radius:999px;background:var(--orange);color:#fff;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;box-shadow:0 8px 20px rgba(236,107,42,.25)}
.product-dialog[data-category="brinquedos-infantis"] .product-dialog-media{background:#fff}
.product-dialog[data-category="brinquedos-infantis"] .product-dialog-media #product-dialog-image{object-fit:contain;padding:20px}
.product-dialog:is([data-category="cozinha"],[data-category="utilidades-domesticas"]) .product-dialog-media{background:#fff}
.product-dialog:is([data-category="cozinha"],[data-category="utilidades-domesticas"]) .product-dialog-media #product-dialog-image{object-fit:contain;padding:20px}
.product-dialog[data-category^="biblias"] .product-dialog-media{background:#fff}
.product-dialog[data-category^="biblias"] .product-dialog-media #product-dialog-image{object-fit:contain;padding:20px}
.product-dialog[data-category="livros-cristaos"] .product-dialog-media{background:#fff}
.product-dialog[data-category="livros-cristaos"] .product-dialog-media #product-dialog-image{object-fit:contain;padding:42px}
.product-dialog-thumbnails{position:absolute;left:20px;right:20px;bottom:20px;z-index:2;display:flex;justify-content:flex-start;gap:10px;padding:4px;overflow-x:auto;scroll-snap-type:x proximity;scrollbar-width:thin}
.product-dialog-thumbnails button{flex:0 0 auto;width:66px;height:66px;padding:4px;border:2px solid transparent;border-radius:12px;background:rgba(255,255,255,.94);box-shadow:0 5px 18px rgba(5,46,70,.14);cursor:pointer;overflow:hidden;scroll-snap-align:start}
.product-dialog-thumbnails button:hover,.product-dialog-thumbnails button.is-active{border-color:var(--teal)}
.product-dialog-thumbnails img{display:block;width:100%;height:100%;border-radius:8px;object-fit:contain}
.product-dialog-media:has(.product-dialog-thumbnails) #product-dialog-image{padding-bottom:105px!important}
.product-dialog-copy{padding:48px 46px;display:flex;flex-direction:column;justify-content:center}
.product-dialog-copy h2{margin:10px 0 14px;color:var(--navy);font-size:32px;line-height:1.15}
.product-dialog-copy p{margin:0;color:var(--muted);font-size:16px;line-height:1.7}
#product-dialog-simple-content{display:flex;flex-direction:column;align-items:flex-start}
#product-dialog-simple-content[hidden],#product-dialog-book-content[hidden]{display:none}
#product-dialog-simple-content>strong{margin-top:22px;color:var(--navy);font-size:18px}
#product-dialog-simple-content>small{margin:8px 0 28px;color:var(--muted);line-height:1.5}
.product-dialog-details{margin:26px 0 0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px 20px}
.product-dialog-details div{min-width:0;padding-bottom:13px;border-bottom:1px solid #dce9e8}
.product-dialog-details dt{margin:0 0 4px;color:var(--muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.product-dialog-details dd{margin:0;color:var(--navy);font-size:14px;font-weight:700;line-height:1.4}
.product-dialog-purchase{margin-top:25px;padding:22px;border:1px solid #d2e6e3;border-radius:18px;background:linear-gradient(145deg,#f4fbfa,#fff)}
.product-dialog-price-label{display:block;color:var(--muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}
.product-dialog-purchase>strong{display:block;margin-top:4px;color:var(--navy);font-size:25px;line-height:1.2}
.product-dialog-purchase>strong .product-price-original{display:block;margin-bottom:3px;font-size:13px}
.product-dialog-purchase>strong .product-price-current{display:block;font-size:25px}
.product-dialog-purchase>strong .product-price-pending{font-size:16px}
.product-dialog-purchase>small{display:block;margin-top:7px;color:var(--muted);font-size:13px;line-height:1.5}
.product-dialog-purchase-fields{margin-top:18px;display:grid;grid-template-columns:140px minmax(0,1fr);gap:14px}
.product-dialog-quantity>span,.product-dialog-shipping>span:first-child{display:block;margin-bottom:7px;color:var(--navy);font-size:12px;font-weight:800}
.product-dialog-quantity>div{height:42px;display:grid;grid-template-columns:40px 1fr 40px;border:1px solid #c8ddda;border-radius:10px;overflow:hidden;background:#fff}
.product-dialog-quantity button{border:0;background:#edf7f5;color:var(--navy);font-size:20px;font-weight:800;cursor:pointer}
.product-dialog-quantity output{display:grid;place-items:center;color:var(--navy);font-size:14px;font-weight:800}
.product-dialog-shipping-field{height:42px;display:grid;grid-template-columns:minmax(0,1fr) auto;border:1px solid #c8ddda;border-radius:10px;overflow:hidden;background:#fff}
.product-dialog-shipping-field input{min-width:0;padding:0 12px;border:0;outline:0;color:var(--navy);font:inherit}
.product-dialog-shipping-field button{padding:0 14px;border:0;border-left:1px solid #d5e5e3;background:#edf7f5;color:var(--teal);font-weight:800}
.shipping-status{margin:8px 0 0!important;color:var(--muted)!important;font-size:11px!important;line-height:1.45!important}
.shipping-options{margin-top:8px;display:grid;gap:7px}
.shipping-option{min-width:0;padding:10px 11px;border:1px solid #d3e4e2;border-radius:10px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:9px;align-items:center;background:#fff;color:var(--navy)}
.shipping-option>span{min-width:0;display:flex;flex-direction:column}
.shipping-option strong{font-size:11px;line-height:1.35}
.shipping-option small{margin-top:2px;color:var(--muted);font-size:10px}
.shipping-option b{font-size:12px;white-space:nowrap}
.shipping-option input{width:17px;height:17px;margin:0;accent-color:var(--teal)}
.shipping-option:has(input){cursor:pointer}
.shipping-option.is-selected{border-color:var(--teal);background:#eef9f7;box-shadow:0 0 0 1px var(--teal)}
.product-dialog-shipping-results{max-height:168px;overflow:auto}
.product-dialog-actions{margin-top:18px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.product-dialog-actions .btn{width:100%;min-height:46px;padding:0 14px;font-size:13px}
.product-dialog-actions button:disabled,.product-dialog-purchase-fields button:disabled,.product-dialog-shipping-field input:disabled{cursor:not-allowed;opacity:.58}
.product-dialog-actions .btn-secondary{border:1px solid var(--teal);background:#fff;color:var(--teal)}
.product-dialog-activation-note{margin-top:12px!important;color:var(--muted)!important;font-size:11px!important;line-height:1.5!important}
body:has(.product-dialog[open]){overflow:hidden}
.test-cart-dialog{width:min(470px,100%);height:100dvh;max-height:none;margin:0 0 0 auto;padding:0;border:0;border-radius:24px 0 0 24px;background:#fff;box-shadow:-20px 0 60px rgba(3,35,53,.24);overflow:hidden}
.test-cart-dialog::backdrop{background:rgba(3,35,53,.62);backdrop-filter:blur(3px)}
.test-cart-layout{height:100%;display:grid;grid-template-rows:auto minmax(0,1fr) auto}
.test-cart-header{padding:25px 24px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:20px}
.test-cart-header span{color:var(--teal);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.09em}
.test-cart-header h2{margin:3px 0 0;color:var(--navy);font-size:27px;line-height:1.1}
.test-cart-header button{width:42px;height:42px;border:1px solid #d6e5e6;border-radius:50%;background:#fff;color:var(--navy);font-size:25px;cursor:pointer}
.test-cart-items{padding:8px 24px;overflow:auto}
.test-cart-item{padding:20px 0;border-bottom:1px solid var(--line);display:grid;grid-template-columns:96px minmax(0,1fr);gap:15px}
.test-cart-item>img{width:96px;height:112px;border-radius:12px;background:#f4f8f7;object-fit:contain}
.test-cart-item-copy{min-width:0}
.test-cart-item-copy>small{display:block;color:var(--teal);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.test-cart-item-copy h3{margin:4px 0 6px;color:var(--navy);font-size:15px;line-height:1.35}
.test-cart-item-copy>strong{color:var(--navy);font-size:16px}
.test-cart-item-copy>span{display:block;margin-top:7px;color:var(--muted);font-size:11px}
.test-cart-item-controls{margin-top:12px;display:flex;align-items:center;gap:0}
.test-cart-item-controls button:not(.test-cart-remove),.test-cart-item-controls output{width:34px;height:34px;border:1px solid #c8ddda;display:grid;place-items:center;background:#fff;color:var(--navy);font-weight:800}
.test-cart-item-controls button:first-child{border-radius:8px 0 0 8px}
.test-cart-item-controls button:nth-of-type(2){border-radius:0 8px 8px 0}
.test-cart-item-controls output{border-width:1px 0;font-size:12px}
.test-cart-item-controls button:disabled{cursor:not-allowed;opacity:.45}
.test-cart-remove{margin-left:10px;padding:7px 0;border:0;background:transparent;color:#b14c3e;font-size:11px;font-weight:800;cursor:pointer}
.test-cart-empty{min-height:320px;display:grid;place-content:center;gap:7px;text-align:center}
.test-cart-empty strong{color:var(--navy);font-size:19px}
.test-cart-empty span{max-width:280px;color:var(--muted);font-size:13px;line-height:1.55}
.test-cart-footer{max-height:58vh;padding:20px 24px 24px;border-top:1px solid var(--line);background:#f8fbfb;overflow:auto}
.test-cart-shipping{margin-bottom:17px;padding-bottom:17px;border-bottom:1px solid var(--line)}
.test-cart-shipping>label{display:block;margin-bottom:7px;color:var(--navy);font-size:12px;font-weight:800}
.test-cart-shipping-field{height:42px;border:1px solid #c8ddda;border-radius:10px;display:grid;grid-template-columns:minmax(0,1fr) auto;overflow:hidden;background:#fff}
.test-cart-shipping-field input{min-width:0;padding:0 12px;border:0;outline:0;color:var(--navy);background:#fff}
.test-cart-shipping-field button{padding:0 15px;border:0;border-left:1px solid #d5e5e3;background:#edf7f5;color:var(--teal);font-size:12px;font-weight:800;cursor:pointer}
.test-cart-shipping-field button:disabled,.test-cart-shipping-field input:disabled{cursor:not-allowed;opacity:.55}
.test-cart-shipping-options{max-height:190px;overflow:auto}
.test-cart-summary{margin-bottom:15px;display:grid;gap:8px}
.test-cart-summary>div{display:flex;align-items:center;justify-content:space-between;color:var(--navy)}
.test-cart-summary span{font-size:12px;font-weight:700}
.test-cart-summary strong{font-size:13px}
.test-cart-summary .test-cart-total{margin-top:4px;padding-top:10px;border-top:1px solid var(--line)}
.test-cart-summary .test-cart-total span{font-size:14px}
.test-cart-summary .test-cart-total strong{font-size:23px}
.test-cart-footer .btn{width:100%}
.test-cart-footer .btn:disabled{cursor:not-allowed;opacity:.58}
.test-cart-footer small{display:block;margin-top:10px;color:var(--muted);font-size:10px;text-align:center;line-height:1.45}
body:has(.test-cart-dialog[open]){overflow:hidden}

.checkout-page{min-height:100vh;background:#f3f8f8;color:var(--text)}
.checkout-header{border-bottom:1px solid var(--line);background:#fff}
.checkout-header-row{min-height:112px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.checkout-header .brand img{width:76px;height:76px}
.checkout-header .brand strong{font-size:25px}
.checkout-secure{display:flex;align-items:center;gap:12px;color:var(--navy)}
.checkout-secure>span{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--mint);font-size:20px}
.checkout-secure div{display:flex;flex-direction:column}
.checkout-secure strong{font-size:13px}
.checkout-secure small{margin-top:2px;color:var(--muted);font-size:11px}
.checkout-main{padding:34px 0 70px}
.checkout-steps{max-width:720px;margin:0 auto 35px;display:grid;grid-template-columns:repeat(3,1fr);position:relative}
.checkout-steps::before{content:"";position:absolute;left:16.5%;right:16.5%;top:17px;height:2px;background:#d8e4e5}
.checkout-steps span{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:7px;color:#809099;font-size:11px;font-weight:800;text-align:center}
.checkout-steps b{width:35px;height:35px;border:2px solid #d8e4e5;border-radius:50%;display:grid;place-items:center;background:#f3f8f8;color:#71838d;font-size:12px}
.checkout-steps .is-complete,.checkout-steps .is-active{color:var(--navy)}
.checkout-steps .is-complete b{border-color:var(--teal);background:var(--teal);color:#fff}
.checkout-steps .is-active b{border-color:var(--teal);background:#fff;color:var(--teal);box-shadow:0 0 0 5px rgba(26,155,145,.10)}
.checkout-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:30px}
.checkout-heading>div{max-width:720px}
.checkout-heading span,.checkout-summary-heading span,.checkout-delivery>span{color:var(--teal);font-size:11px;font-weight:800;letter-spacing:.1em}
.checkout-heading h1{margin:5px 0 7px;color:var(--navy);font-size:clamp(30px,4vw,44px);line-height:1.08;letter-spacing:-.03em}
.checkout-heading p{margin:0;color:var(--muted);line-height:1.65}
.checkout-heading>a{padding-bottom:4px;color:var(--teal);font-size:13px;font-weight:800;white-space:nowrap}
.checkout-pilot-note{margin:24px 0;min-height:56px;padding:12px 16px;border:1px solid #cfe5e2;border-radius:12px;display:flex;align-items:center;gap:11px;background:#eef9f7}
.checkout-pilot-note>span{font-size:20px}
.checkout-pilot-note p{margin:0;color:#315b62;font-size:12px;line-height:1.5}
.checkout-layout{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(330px,.85fr);gap:28px;align-items:start}
.checkout-layout[hidden],.checkout-empty[hidden]{display:none}
.checkout-form{display:grid;gap:18px}
.checkout-card,.checkout-summary-card,.checkout-empty{border:1px solid #dbe7e8;border-radius:18px;background:#fff;box-shadow:0 10px 35px rgba(5,46,70,.05)}
.checkout-card{padding:25px}
.checkout-card-heading{display:flex;gap:13px;align-items:flex-start}
.checkout-card-heading>span{flex:0 0 auto;width:31px;height:31px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:#fff;font-size:11px;font-weight:800}
.checkout-card-heading h2{margin:1px 0 3px;color:var(--navy);font-size:20px}
.checkout-card-heading p{margin:0;color:var(--muted);font-size:11px;line-height:1.5}
.checkout-address-status{min-height:18px;margin:14px 0 -8px;padding-left:44px;color:var(--muted);font-size:10px;line-height:1.5}
.checkout-address-status.is-loading{color:#53747c}
.checkout-address-status.is-success{color:#176b54;font-weight:700}
.checkout-address-status.is-error{color:#a55018;font-weight:700}
.checkout-fields{margin-top:21px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
.checkout-field{min-width:0;display:flex;flex-direction:column}
.checkout-field-wide{grid-column:1/-1}
.checkout-field>span{margin-bottom:6px;color:var(--navy);font-size:11px;font-weight:800}
.checkout-field>span small{color:var(--muted);font-weight:600}
.checkout-field input,.checkout-field select{width:100%;height:46px;padding:0 13px;border:1px solid #c9dbdd;border-radius:10px;outline:0;background:#fff;color:var(--navy);font:inherit;font-size:13px}
.checkout-field input:focus,.checkout-field select:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(26,155,145,.11)}
.checkout-field input[readonly]{background:#f3f7f7;color:#536b75}
.checkout-field>small{margin-top:5px;color:var(--muted);font-size:9px;line-height:1.4}
.checkout-address-fields{grid-template-columns:140px minmax(0,1fr) 105px}
.checkout-field-street{grid-column:2/3}
.checkout-field-number{grid-column:3/4}
.checkout-field-complement{grid-column:1/-1}
.checkout-field-city{grid-column:2/3}
.checkout-field-state{grid-column:3/4}
.checkout-consent,.checkout-confirmation{display:flex;align-items:flex-start;gap:12px;cursor:pointer}
.checkout-consent{margin-top:20px;padding:15px;border:1px solid #d9e7e8;border-radius:12px;background:#f8fbfb}
.checkout-consent input,.checkout-confirmation input{flex:0 0 auto;width:18px;height:18px;margin:1px 0 0;accent-color:var(--teal)}
.checkout-consent span{display:flex;flex-direction:column}
.checkout-consent strong{color:var(--navy);font-size:12px}
.checkout-consent small{margin-top:3px;color:var(--muted);font-size:10px;line-height:1.5}
.checkout-payment-method{margin-top:20px;padding:16px;border:1px solid #d7e5e6;border-radius:12px;display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;background:#f8fbfb}
.checkout-payment-method>span{width:41px;height:41px;border-radius:10px;display:grid;place-items:center;background:#fff;font-size:20px}
.checkout-payment-method div{display:flex;flex-direction:column}
.checkout-payment-method strong{color:var(--navy);font-size:13px}
.checkout-payment-method small{margin-top:2px;color:var(--muted);font-size:10px}
.checkout-payment-method b{padding:5px 8px;border-radius:999px;background:#fff1e8;color:#a55018;font-size:9px;text-transform:uppercase;white-space:nowrap}
.checkout-confirmation{padding:4px 5px;color:#425c68;font-size:11px;line-height:1.5}
.checkout-submit{width:100%;min-height:52px;border:0;font-size:14px}
.checkout-form-status{min-height:20px;margin:-5px 0 0;color:var(--muted);font-size:11px;text-align:center}
.checkout-form-status.is-success{padding:11px;border:1px solid #bfe0d5;border-radius:10px;background:#edf9f4;color:#176b54;font-weight:700}
.checkout-form-status.is-error{padding:11px;border:1px solid #efc9ba;border-radius:10px;background:#fff5f1;color:#a13f24;font-weight:700}
.checkout-summary{position:sticky;top:24px}
.checkout-summary-card{padding:23px}
.checkout-summary-heading{padding-bottom:17px;border-bottom:1px solid var(--line);display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.checkout-summary-heading h2{margin:2px 0 0;color:var(--navy);font-size:21px}
.checkout-summary-heading a{margin-top:5px;color:var(--teal);font-size:10px;font-weight:800;text-transform:uppercase}
.checkout-summary-items{display:grid}
.checkout-summary-item{padding:17px 0;border-bottom:1px solid var(--line);display:grid;grid-template-columns:64px minmax(0,1fr) auto;gap:12px;align-items:center}
.checkout-summary-item img{width:64px;height:72px;border-radius:10px;background:#f4f8f7;object-fit:contain}
.checkout-summary-item div{min-width:0;display:flex;flex-direction:column}
.checkout-summary-item strong{color:var(--navy);font-size:11px;line-height:1.4}
.checkout-summary-item span{margin-top:3px;color:var(--muted);font-size:9px}
.checkout-summary-item b{color:var(--navy);font-size:11px;white-space:nowrap}
.checkout-delivery{margin-top:17px;padding:14px;border:1px solid #cfe4e1;border-radius:12px;display:flex;flex-direction:column;background:#f0f9f7}
.checkout-delivery strong{margin-top:3px;color:var(--navy);font-size:11px}
.checkout-delivery small{margin-top:3px;color:var(--muted);font-size:9px}
.checkout-totals{margin:18px 0 0;display:grid;gap:9px}
.checkout-totals>div{display:flex;align-items:center;justify-content:space-between}
.checkout-totals dt{color:var(--muted);font-size:11px}
.checkout-totals dd{margin:0;color:var(--navy);font-size:12px;font-weight:800}
.checkout-totals .checkout-total{margin-top:4px;padding-top:13px;border-top:1px solid var(--line)}
.checkout-totals .checkout-total dt{color:var(--navy);font-size:14px;font-weight:800}
.checkout-totals .checkout-total dd{font-size:24px}
.checkout-summary-safe{margin:17px 0 0;padding-top:15px;border-top:1px solid var(--line);color:var(--muted);font-size:9px;line-height:1.5;text-align:center}
.checkout-empty{max-width:650px;margin:45px auto;padding:45px;text-align:center}
.checkout-empty strong{display:block;color:var(--navy);font-size:21px}
.checkout-empty p{margin:7px 0 20px;color:var(--muted);font-size:13px}
.checkout-footer{border-top:1px solid var(--line);background:#fff}
.checkout-footer .container{min-height:75px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:var(--muted);font-size:11px}
.checkout-footer a{color:var(--teal);font-weight:800}

@media(max-width:900px){
  .checkout-layout{grid-template-columns:1fr}
  .checkout-summary{position:static;grid-row:1}
  .checkout-heading{align-items:flex-start;flex-direction:column}
}

@media(max-width:620px){
  .checkout-header-row{min-height:88px}
  .checkout-header .brand img{width:58px;height:58px}
  .checkout-header .brand strong{font-size:20px}
  .checkout-header .brand small{font-size:9px}
  .checkout-secure>span{display:none}
  .checkout-secure small{display:none}
  .checkout-main{padding-top:24px}
  .checkout-steps{margin-bottom:26px}
  .checkout-steps span{font-size:9px}
  .checkout-heading h1{font-size:32px}
  .checkout-heading>a{display:none}
  .checkout-card,.checkout-summary-card{padding:18px;border-radius:15px}
  .checkout-fields,.checkout-address-fields{grid-template-columns:1fr}
  .checkout-field,.checkout-field-wide,.checkout-field-street,.checkout-field-number,.checkout-field-complement,.checkout-field-city,.checkout-field-state{grid-column:1/-1}
  .checkout-payment-method{grid-template-columns:auto 1fr}
  .checkout-payment-method b{grid-column:2/3;justify-self:start}
  .checkout-footer .container{flex-direction:column;justify-content:center;gap:4px}
}

@media(max-width:980px){
  .catalog-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .catalog-hero-grid{grid-template-columns:1fr;gap:34px}
  .catalog-hero-note{max-width:620px}
  .catalog-hero-casa{background-position:58% center}
  .catalog-hero-casa .catalog-hero-grid{grid-template-columns:minmax(0,540px) 1fr}
}

@media(max-width:700px){
  .faith-directory-heading,.catalog-heading{align-items:start;flex-direction:column}
  .faith-directory-heading>a,.catalog-heading-link{white-space:normal}
  .catalog-section,.catalog-main{padding:58px 0}
  .catalog-product-grid{gap:14px}
  .catalog-product-content{padding:16px}
  .catalog-product-content h3{font-size:17px}
  .deal-banner-wide{padding:32px 24px}
  .catalog-hero{padding:54px 0}
  .catalog-hero h1{font-size:clamp(38px,11vw,48px)}
  .catalog-hero-grid>div:first-child>p{font-size:17px}
  .catalog-hero-casa{min-height:auto;padding:0;background:#f7faf9}
  .catalog-hero-casa::before{display:none}
  .catalog-hero-casa .catalog-hero-grid{width:min(1180px,92%);min-height:auto;display:block;padding:46px 0 34px}
  .catalog-hero-casa-copy{padding:0}
  .catalog-hero-casa .catalog-hero-note{width:100%;max-width:none;margin-top:22px;padding:16px 18px;background:#fff;backdrop-filter:none}
  .catalog-hero-casa-mobile{display:block;width:100%;height:auto;aspect-ratio:1672/941;object-fit:cover}
  .catalog-support{margin-bottom:58px;padding:28px 24px;grid-template-columns:1fr}
  .catalog-support h2{font-size:30px}
  .catalog-support .btn{justify-self:stretch}
  .product-dialog-grid{grid-template-columns:1fr}
  .product-dialog{width:min(620px,96%);max-height:94vh}
  .product-dialog-media{min-height:330px;max-height:400px}
  .product-dialog-copy{padding:34px 24px}
  .product-dialog-copy h2{font-size:27px}
  .product-dialog-purchase-fields{grid-template-columns:1fr}
}

@media(max-width:560px){
  .catalog-product-grid{grid-template-columns:1fr}
  .catalog-product-image{aspect-ratio:4/3.9}
  .faith-subcategories{flex-wrap:nowrap;overflow-x:auto;padding-bottom:6px;scrollbar-width:thin}
  .faith-subcategories a{flex:0 0 auto}
  .catalog-filters{flex-wrap:nowrap;overflow-x:auto;padding-bottom:8px;scrollbar-width:thin}
  .catalog-filter{flex:0 0 auto}
  .product-dialog{width:100%;max-width:none;max-height:96vh;margin:auto 0 0;border-radius:22px 22px 0 0}
  .product-dialog-media{min-height:290px;max-height:330px}
  .product-dialog[data-category="livros-cristaos"] .product-dialog-media #product-dialog-image{padding:28px}
  .product-dialog-copy{padding:28px 18px 34px}
  .product-dialog-copy h2{font-size:25px}
  .product-dialog-details{grid-template-columns:1fr 1fr;gap:12px}
  .product-dialog-purchase{padding:18px 15px}
  .product-dialog-actions{grid-template-columns:1fr}
  .product-dialog-thumbnails{left:12px;right:12px;bottom:12px;gap:7px}
  .product-dialog-thumbnails button{width:56px;height:56px;border-radius:10px}
  .product-dialog-media:has(.product-dialog-thumbnails) #product-dialog-image{padding-bottom:85px!important}
  .test-cart-dialog{width:100%;height:min(88dvh,760px);margin:auto 0 0;border-radius:22px 22px 0 0}
  .test-cart-header,.test-cart-items,.test-cart-footer{padding-left:18px;padding-right:18px}
}
