/*
Theme Name: ABC Pedagógico
Theme URI: https://abcpedagogico.com.br/
Author: ABC Pedagógico
Author URI: https://abcpedagogico.com.br/
Description: Tema leve, responsivo e compatível com WooCommerce, desenvolvido para a loja ABC Pedagógico.
Version: 0.11.16
Requires at least: 6.3
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: abc-pedagogico
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, woocommerce, education, responsive, custom-logo, custom-menu
*/

:root {
  --abc-blue: #2f8cff;
  --abc-blue-dark: #1f73d8;
  --abc-pink: #ff3b9d;
  --abc-pink-dark: #e82483;
  --abc-yellow: #fff2b8;
  --abc-green: #24b36b;
  --abc-ink: #223047;
  --abc-muted: #677489;
  --abc-line: #e8e9ef;
  --abc-soft: #f8f9fc;
  --abc-white: #ffffff;
  --abc-radius: 18px;
  --abc-shadow: 0 12px 32px rgba(34, 48, 71, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--abc-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--abc-blue); text-decoration: none; }
a:hover { color: var(--abc-blue-dark); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.abc-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.abc-section { padding: 52px 0; }
.abc-section--soft { background: var(--abc-soft); }
.abc-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.abc-section__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.15;
}
.abc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--abc-pink-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.abc-button,
input[type="submit"],
body:not(.single-product) .woocommerce a.button,
body:not(.single-product) .woocommerce button.button,
body:not(.single-product) .woocommerce input.button,
body:not(.single-product) .woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--abc-pink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.abc-button:hover,
input[type="submit"]:hover,
body:not(.single-product) .woocommerce a.button:hover,
body:not(.single-product) .woocommerce button.button:hover,
body:not(.single-product) .woocommerce input.button:hover {
  transform: translateY(-1px);
  background: var(--abc-pink-dark);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 59, 157, .24);
}
.abc-button--blue { background: var(--abc-blue); }
.abc-button--blue:hover { background: var(--abc-blue-dark); }
.abc-button--ghost {
  background: #fff;
  color: var(--abc-blue);
  border: 1px solid rgba(17,85,204,.18);
}
.abc-button--ghost:hover { background: #eef4ff; color: var(--abc-blue-dark); }

/* Header */
.abc-site-header {
  position: static;
  z-index: auto;
  background: rgba(255,255,255,.98);
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(34,48,71,.05);
}
.abc-header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.abc-branding { display: flex; align-items: center; min-width: 150px; }
.abc-branding img { max-height: 58px; width: auto; }
.abc-branding__name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--abc-blue);
}
.abc-search { position: relative; }
.abc-search .woocommerce-product-search,
.abc-search form[role="search"] { display: flex; }
.abc-search input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 118px 0 18px;
  border: 1px solid #dfe3eb;
  border-radius: 999px;
  background: #f7f8fb;
  outline: none;
}
.abc-search input[type="search"]:focus {
  border-color: var(--abc-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17,85,204,.09);
}
.abc-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: auto;
  min-width: 104px;
  min-height: 40px;
  padding: 0 16px;
  background: var(--abc-blue);
}
.abc-header-actions { display: flex; align-items: center; gap: 10px; }
.abc-header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: .92rem;
  font-weight: 750;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.abc-header-action:hover { transform: translateY(-1px); }
.abc-header-action__label--mobile { display: none; }
.abc-header-action--products {
  background: var(--abc-pink);
  border-color: var(--abc-pink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 59, 157, .22);
}
.abc-header-action--products:hover {
  background: var(--abc-pink-dark);
  border-color: var(--abc-pink-dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 59, 157, .28);
}
.abc-header-actions > a:not(.abc-header-action--products) {
  background: var(--abc-blue);
  border-color: var(--abc-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 140, 255, .22);
}
.abc-header-actions > a:not(.abc-header-action--products):hover {
  background: var(--abc-blue-dark);
  border-color: var(--abc-blue-dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 140, 255, .28);
}
.abc-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #FFDE21;
  color: #223047;
  font-size: .75rem;
  font-weight: 800;
}
.abc-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--abc-blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.abc-menu-toggle__label { display: none; }
.abc-main-nav { border-top: 0; background: #FFDE21; border-bottom: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.32); }
.abc-main-nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.abc-main-nav a {
  display: block;
  padding: 8px 20px;
  border-radius: 999px;
  color: #1f1f1f;
  font-weight: 900;
  font-size: 1.14rem;
  line-height: 1;
}
.abc-main-nav a:hover,
.abc-main-nav .current-menu-item > a { background: #fff8ef; color: #1f1f1f; box-shadow: 0 8px 16px rgba(255,214,75,.28); }

/* Home banner */
.abc-home-banner {
  padding: 0 0 18px;
  background: #fff;
}
.abc-home-banner__inner {
  width: min(1320px, calc(100% - 16px));
}
.abc-home-banner__media,
.abc-home-banner__placeholder {
  width: 100%;
  min-height: 340px;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  background: #fff6dc;
  box-shadow: 0 14px 30px rgba(34, 48, 71, .10);
}
.abc-home-banner__media {
  position: relative;
}
.abc-home-banner__slides,
.abc-home-banner__slide {
  width: 100%;
}
.abc-home-banner__slide[hidden] {
  display: none !important;
}
.abc-home-banner__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.abc-home-banner__link:focus-visible {
  outline: 3px solid var(--abc-blue);
  outline-offset: -4px;
}
.abc-home-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  background: #ffffff;
  display: block;
}
.abc-home-banner__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(34, 48, 71, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--abc-ink);
  box-shadow: 0 8px 20px rgba(34, 48, 71, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background-color .2s ease;
}
.abc-home-banner__arrow:hover,
.abc-home-banner__arrow:focus-visible {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.abc-home-banner__arrow span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}
.abc-home-banner__arrow--previous { left: 16px; }
.abc-home-banner__arrow--next { right: 16px; }
.abc-home-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 16px rgba(34, 48, 71, .14);
  transform: translateX(-50%);
}
.abc-home-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aeb7c5;
  cursor: pointer;
}
.abc-home-banner__dot.is-active,
.abc-home-banner__dot[aria-current="true"] {
  background: var(--abc-blue);
}
.abc-home-banner__dot:focus-visible,
.abc-home-banner__arrow:focus-visible {
  outline: 3px solid var(--abc-yellow);
  outline-offset: 2px;
}
.abc-home-banner__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px;
  text-align: center;
  color: var(--abc-ink);
  border: 3px dashed #ffd766;
}
.abc-home-banner__placeholder strong {
  font-size: 1.3rem;
  line-height: 1.2;
}
.abc-home-banner__placeholder span {
  max-width: 560px;
  color: var(--abc-muted);
}

/* Benefits */
.abc-benefits { margin-top: -28px; position: relative; z-index: 3; }
.abc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
 .abc-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--abc-line);
  border-radius: var(--abc-radius);
  box-shadow: 0 10px 28px rgba(34,48,71,.07);
}
.abc-benefit__icon {
  flex: 0 0 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--abc-blue);
}
.abc-benefit strong { display: block; margin-bottom: 1px; line-height: 1.02; font-size: .98rem; letter-spacing: -.02em; }
.abc-benefit span { color: var(--abc-muted); font-size: .81rem; line-height: 1.18; }

/* Categories */
.abc-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.abc-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 16px 10px;
  border: 1px solid var(--abc-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  color: var(--abc-ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.abc-category-card:hover { transform: translateY(-3px); border-color: rgba(17,85,204,.25); box-shadow: var(--abc-shadow); }
.abc-category-card__image {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--abc-yellow);
}
.abc-category-card__image img { width: 100%; height: 100%; object-fit: cover; }
.abc-category-card strong { font-size: .95rem; line-height: 1.25; }
.abc-category-card small { margin-top: 7px; color: var(--abc-muted); font-size: .78rem; line-height: 1.35; }
.abc-category-card__fallback { height: 100%; display: grid; place-items: center; font-size: 1.75rem; }
.abc-category-grid--children { margin-bottom: 28px; }
.abc-child-categories { margin: 10px 0 34px; }
.abc-child-categories h2 { margin: 0 0 18px; font-size: clamp(1.35rem, 2vw, 1.9rem); }
.abc-hero-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; padding: 28px; text-align: center; color: var(--abc-blue); font-weight: 900; font-size: 1.3rem; }


/* WhatsApp group */
.abc-whatsapp-band { padding: 8px 0 18px; }
.abc-whatsapp-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border-radius: 28px;
  background: #eefcf3;
  border: 1px solid rgba(31,157,102,.18);
  box-shadow: 0 12px 34px rgba(31,157,102,.10);
}
.abc-whatsapp-cta__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #25d366;
  color: #fff;
}
.abc-whatsapp-cta__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #14784b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.abc-whatsapp-cta h2 { margin: 0 0 5px; font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.15; }
.abc-whatsapp-cta p { margin: 0; color: #4f6c5d; }
.abc-button--whatsapp { background: #25d366; white-space: nowrap; }
.abc-button--whatsapp:hover { background: #1ba952; box-shadow: 0 10px 24px rgba(37,211,102,.24); }
.abc-admin-note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px;
  border: 1px dashed rgba(17,85,204,.35);
  border-radius: 18px;
  background: #fff;
  color: var(--abc-muted);
}
.abc-admin-note strong { color: var(--abc-ink); }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin: 22px 0; color: var(--abc-muted); font-size: .9rem; }
.woocommerce ul.products {
  display: grid;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--abc-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(34,48,71,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(34,48,71,.16); }
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: block;
}
.woocommerce ul.products li.product a img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  margin: 0;
  border-radius: var(--abc-card-image-radius, 18px) var(--abc-card-image-radius, 18px) 0 0;
  background: #f5f6f9;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 0;
  margin: 0;
  padding: var(--abc-card-image-title-spacing, 5px) var(--abc-card-title-side-padding, 12px) 0;
  color: var(--abc-card-title-color, var(--abc-ink));
  font-size: var(--abc-card-title-size-desktop, 16px);
  line-height: 1.25;
  text-align: var(--abc-card-title-align, center);
}
.woocommerce ul.products li.product .price {
  display: block;
  width: 100%;
  margin: var(--abc-card-title-price-spacing, 12px) 0 var(--abc-card-price-bottom-spacing, 8px);
  padding: 0 var(--abc-card-title-side-padding, 12px);
  color: var(--abc-card-price-color, #0b3f9f);
  font-size: var(--abc-card-price-size-desktop, 18px);
  font-weight: 900;
  line-height: 1.1;
  text-align: var(--abc-card-price-align, center);
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
  display: inline-block;
  text-align: inherit;
}
.woocommerce ul.products li.product .price del {
  margin-right: 4px;
  color: #677489;
  opacity: .78;
  font-weight: 700;
  text-decoration-line: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: currentColor !important;
}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount bdi {
  color: inherit;
  text-decoration: line-through !important;
  text-decoration-line: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: currentColor !important;
}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
  display: inline !important;
}
.woocommerce ul.products li.product .price ins {
  color: var(--abc-card-price-color, #0b3f9f);
  text-decoration: none !important;
}
.woocommerce ul.products li.product .button { margin: 12px 16px 16px; width: calc(100% - 32px); display: flex; justify-content: center; align-items: center; text-align: center; line-height: 1; padding-inline: 18px; }
.woocommerce ul.products li.product .button:hover { background: #FFD64B; color: #223047; box-shadow: 0 10px 18px rgba(255,214,75,.26); }
.woocommerce span.onsale {
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--abc-pink);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}
.woocommerce ul.products li.product .onsale,
.woocommerce ul.products li.product .abc-offer-badge,
.woocommerce ul.products li.product .offer-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  top: auto;
  left: auto;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: var(--abc-offer-badge-padding-y, 8px) var(--abc-offer-badge-padding-x, 12px);
  border-radius: var(--abc-offer-badge-radius, 50px);
  background: #ffde21;
  color: #223047;
  font-size: var(--abc-offer-badge-font-size, 14px);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.woocommerce ul.products li.product .abc-product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--abc-card-image-radius, 18px) var(--abc-card-image-radius, 18px) 0 0;
}
.woocommerce ul.products li.product .abc-product-image-wrap img {
  border-radius: 0;
}
.woocommerce table.shop_table { border-color: var(--abc-line); border-radius: 16px; overflow: hidden; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #dfe3eb;
  border-radius: 12px;
  background: #fff;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 0;
  border-radius: 14px;
  background: #f4f8ff;
  color: var(--abc-ink);
}
.woocommerce-message { border-left: 5px solid var(--abc-green); }
.woocommerce-info { border-left: 5px solid var(--abc-blue); }
.woocommerce-error { border-left: 5px solid #d43b4f; }

/* Content */
.abc-content { padding: 38px 0 60px; }
.abc-entry { max-width: 860px; margin-inline: auto; }
.abc-entry h1 { line-height: 1.15; }
.abc-entry-content > * + * { margin-top: 1.15em; }
.abc-entry-content img { border-radius: 14px; }

/* CTA */
.abc-cta {
  padding: 34px;
  border-radius: 28px;
  background: var(--abc-blue);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.abc-cta h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 2.5vw, 2.35rem); }
.abc-cta p { margin: 0; opacity: .9; }


/* Home colorfulness */
.home .abc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.home .abc-hero-card { border: 2px solid #ffe3a3; box-shadow: 0 14px 30px rgba(255, 214, 75, .12); }
.home .abc-hero-card__image { background: #f5eef7; }
.home .abc-button--blue { box-shadow: 0 10px 20px rgba(47,140,255,.22); }
.home .abc-button--ghost { border-color: #ffb8d7; color: #ff3b9d; background: #fff7fb; }
.home .abc-button--ghost:hover { background: #ffeef7; color: #d8227d; }
.home .abc-hero .abc-eyebrow { color: #ff2f95; }
.home .abc-hero h1 { color: #223047; text-shadow: 0 2px 0 rgba(255,255,255,.6); }
.home .abc-hero__text { color: #52647d; }
.home .abc-hero__actions .abc-button { min-height: 52px; }
.home .abc-benefits { margin-top: 0; }

.home .abc-benefit:nth-child(1) { background: #fff8df; border-color: #ffe39b; border-top: 4px solid #f3b300; }
.home .abc-benefit:nth-child(1) .abc-benefit__icon { background: #fff0b9; color: #dd9b00; }
.home .abc-benefit:nth-child(2) { background: #eef7ff; border-color: #bfddff; border-top: 4px solid #2f8cff; }
.home .abc-benefit:nth-child(2) .abc-benefit__icon { background: #d9ecff; color: #2f8cff; }
.home .abc-benefit:nth-child(3) { background: #fff2f8; border-color: #ffc6df; border-top: 4px solid #ff3b9d; }
.home .abc-benefit:nth-child(3) .abc-benefit__icon { background: #ffd9ea; color: #ff3b9d; }
.home .abc-benefit:nth-child(4) { background: #eefcf3; border-color: #bdeecb; }
.home .abc-benefit:nth-child(4) .abc-benefit__icon { background: #d6f7e1; color: #24b36b; }

.home .abc-section--categories { background: #fff9ef; }
.home .abc-section--pinkwash { background: #fff4fa; }
.home .abc-section--bluewash { background: #f2f9ff; }
.home .abc-section--yellowwash { background: #fff8e8; }
.home .abc-section--playful .abc-section__heading h2,
.home .abc-section--pinkwash .abc-section__heading h2,
.home .abc-section--bluewash .abc-section__heading h2,
.home .abc-section--yellowwash .abc-section__heading h2 { color: #223047; }

.home .abc-category-card { border-width: 2px; box-shadow: 0 10px 22px rgba(34,48,71,.05); }
.home .abc-category-grid--main .abc-category-card:nth-child(1) { background: #fff8dc; border-color: #ffd766; }
.home .abc-category-grid--main .abc-category-card:nth-child(1) .abc-category-card__image { background: #ffe88e; }
.home .abc-category-grid--main .abc-category-card:nth-child(2) { background: #eef7ff; border-color: #8fc4ff; }
.home .abc-category-grid--main .abc-category-card:nth-child(2) .abc-category-card__image { background: #cfe7ff; }
.home .abc-category-grid--main .abc-category-card:nth-child(3) { background: #eef9ff; border-color: #89ceff; }
.home .abc-category-grid--main .abc-category-card:nth-child(3) .abc-category-card__image { background: #d1efff; }
.home .abc-category-grid--main .abc-category-card:nth-child(4) { background: #fff2f8; border-color: #ffb6d4; }
.home .abc-category-grid--main .abc-category-card:nth-child(4) .abc-category-card__image { background: #ffd8e8; }
.home .abc-category-grid--main .abc-category-card:nth-child(5) { background: #eefcf3; border-color: #9de1b4; }
.home .abc-category-grid--main .abc-category-card:nth-child(5) .abc-category-card__image { background: #cff3dc; }
.home .abc-category-card:hover { transform: translateY(-4px) scale(1.01); }

.home .abc-whatsapp-cta {
  background: #eefcf3;
  border: 2px solid rgba(36,179,107,.18);
}
.home .abc-whatsapp-cta__content h2 { color: #1e3557; }
.home .abc-whatsapp-cta__icon { box-shadow: 0 10px 20px rgba(37,211,102,.18); }

.home .woocommerce ul.products li.product { border: 2px solid #edf0f6; }
.home .abc-section--pinkwash .woocommerce ul.products li.product { border-color: #ffd3e7; background: #fff; }
.home .abc-section--bluewash .woocommerce ul.products li.product { border-color: #cfe5ff; background: #fff; }
.home .abc-section--yellowwash .woocommerce ul.products li.product { border-color: #ffe4a9; background: #fff; }
.home .woocommerce ul.products li.product .button { background: var(--abc-pink); }
.home .woocommerce ul.products li.product { box-shadow: 0 14px 34px rgba(34,48,71,.12); }
.home .woocommerce ul.products li.product .price { color: #ff3b9d; }
.home .woocommerce ul.products li.product .button { background: #ffd64b; color: #223047; box-shadow: 0 10px 18px rgba(255,214,75,.26); }
.home .woocommerce ul.products li.product .button:hover { background: #FFD64B; color: #223047; }



/* Menu principal no estilo de navegação da referência, usando a paleta ABC */
.abc-main-nav .abc-container { position: relative; }
.abc-main-nav .abc-fallback-menu,
.abc-main-nav > .abc-container > ul {
  justify-content: center;
}
.abc-main-nav > .abc-container > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}
.abc-main-nav > .abc-container > ul > li:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: #fff4c9;
  font-weight: 900;
}
.abc-menu-arrow { margin-left: 7px; font-size: .68rem; }
.abc-main-nav .sub-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% - 2px);
  left: 0;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 2px solid #ffd64b;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(34,48,71,.16);
}
.abc-main-nav .sub-menu li { width: 100%; }
.abc-main-nav .sub-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--abc-ink);
  font-size: .9rem;
}
.abc-main-nav .sub-menu a:hover { background: #fff8ef; color: #d68500; }
.abc-main-nav li:hover > .sub-menu,
.abc-main-nav li:focus-within > .sub-menu { display: block; }

/* Vitrines da home — fundos sólidos, sem degradê */
.home .abc-section--launches { background: #fff4fa; }
.home .abc-section--bestsellers { background: #eef7ff; }
.home .abc-section--favorites { background: #fff8df; }
.home .abc-section--launches .abc-section__heading h2 { color: #e82483; }
.home .abc-section--bestsellers .abc-section__heading h2 { color: #1f73d8; }
.home .abc-section--favorites .abc-section__heading h2 { color: #b77a00; }
.home .abc-section--launches .abc-section__heading,
.home .abc-section--bestsellers .abc-section__heading,
.home .abc-section--favorites .abc-section__heading {
  padding-bottom: 0;
  border-bottom: 0;
}
.home .abc-section--launches .woocommerce ul.products li.product { border-color: #ffc6df; }
.home .abc-section--bestsellers .woocommerce ul.products li.product { border-color: #bfddff; }
.home .abc-section--favorites .woocommerce ul.products li.product { border-color: #ffe39b; }
.home .abc-section--launches .woocommerce ul.products li.product .button { background: #ff3b9d; color: #fff; }
.home .abc-section--bestsellers .woocommerce ul.products li.product .button { background: #2f8cff; color: #fff; }
.home .abc-section--favorites .woocommerce ul.products li.product .button { background: #ffd64b; color: #223047; }
.home .abc-section--launches .woocommerce ul.products li.product .button:hover { background: #FFD64B; color: #223047; }
.home .abc-section--bestsellers .woocommerce ul.products li.product .button:hover { background: #FFD64B; color: #223047; }
.home .abc-section--favorites .woocommerce ul.products li.product .button:hover { background: #FFD64B; color: #223047; }


/* Títulos, subtítulos e links das seções controlados pelo Personalizador. */
.abc-section__heading,
.abc-section-header,
.abc-section-heading,
.abc-section-title-wrap,
.abc-home-section-header,
.abc-home-block-header {
  display: flex;
  align-items: var(--abc-section-flex-align, center);
  justify-content: var(--abc-section-flex-align, center);
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: var(--abc-section-heading-bottom-spacing, 24px);
  text-align: var(--abc-section-text-align, center);
}
.abc-section__heading > div,
.abc-section-header > div,
.abc-section-heading > div,
.abc-section-title-wrap > div,
.abc-home-section-header > div,
.abc-home-block-header > div {
  width: 100%;
}
.abc-section__heading .abc-eyebrow,
.abc-section-eyebrow,
.abc-section-kicker,
.abc-section-subtitle,
.abc-home-section-subtitle,
.abc-home-block-subtitle {
  display: block;
  width: 100%;
  margin: 0 auto var(--abc-section-subtitle-bottom-spacing, 4px);
  font-family: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: var(--abc-section-subtitle-size, 17px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .045em;
  text-align: var(--abc-section-text-align, center);
  text-transform: none;
}
.abc-section__heading h2,
.abc-section-title,
.abc-home-section-title,
.abc-home-block-title {
  width: 100%;
  margin: 0 auto;
  font-family: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(var(--abc-section-title-size-mobile, 34px), 5vw, var(--abc-section-title-size-desktop, 64px));
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
  text-align: var(--abc-section-text-align, center);
}
.abc-section__heading > a,
.abc-section-action,
.abc-home-section-action {
  position: static;
  flex: 1 1 100%;
  width: 100%;
  margin-top: 10px;
  text-align: var(--abc-section-text-align, center);
}

/* Footer */
.abc-site-footer { background: #162238; color: #dbe5f5; margin-top: 34px; }
.abc-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 38px;
  padding: 50px 0 32px;
}
.abc-footer-brand { max-width: 360px; }
.abc-footer-brand img { max-height: 62px; width: auto; filter: brightness(0) invert(1); }
.abc-footer-title { margin: 0 0 14px; color: #fff; font-size: 1rem; }
.abc-footer-links { margin: 0; padding: 0; list-style: none; }
.abc-footer-links li + li { margin-top: 8px; }
.abc-footer-links a { color: #dbe5f5; }
.abc-footer-links a:hover { color: #fff; }
.abc-footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); color: #aebdd2; font-size: .9rem; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .abc-header-main { grid-template-columns: auto 1fr auto; gap: 14px; }
  .abc-header-action--cart > span:not(.abc-cart-count),
  .abc-header-action--products .abc-header-action__label--desktop { display: none; }
  .abc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .abc-category-grid { grid-template-columns: repeat(3, 1fr); }
  .abc-whatsapp-cta { grid-template-columns: auto 1fr; }
  .abc-whatsapp-cta .abc-button { grid-column: 2; justify-self: start; }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
  .abc-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .abc-footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 782px) {
  .abc-topbar__inner { min-height: 32px; font-size: .82rem; }
  .abc-site-header { top: 0; }
  .abc-header-main {
    min-height: 0;
    grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
    grid-template-areas:
      "branding actions"
      "search search"
      "menu menu";
    gap: 10px 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .abc-branding {
    grid-area: branding;
    min-width: 0;
  }
  .abc-branding img {
    width: auto;
    max-width: min(var(--abc-mobile-logo-width, 128px), 34vw);
    max-height: 58px;
  }
  .abc-header-actions {
    grid-area: actions;
    width: 100%;
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
  }
  .abc-header-action--products {
    display: inline-flex;
    flex: 0 0 min(var(--abc-mobile-files-width, 142px), 38vw);
    width: min(var(--abc-mobile-files-width, 142px), 38vw);
    min-width: min(var(--abc-mobile-files-width, 142px), 38vw);
    min-height: var(--abc-mobile-action-height, 48px);
    height: var(--abc-mobile-action-height, 48px);
    padding: 0 12px;
    justify-content: center;
    overflow: visible;
    background: var(--abc-mobile-files-background, var(--abc-pink));
    border-color: var(--abc-mobile-files-background, var(--abc-pink));
    border-radius: 16px;
    font-size: .76rem;
    line-height: 1;
    white-space: nowrap;
  }
  .abc-header-action--products .abc-header-action__label--desktop {
    display: none !important;
  }
  .abc-header-action--products .abc-header-action__label--mobile {
    display: inline !important;
  }
  .abc-header-action--products svg {
    display: none;
  }
  .abc-header-action--cart {
    position: relative;
    flex: 0 0 var(--abc-mobile-action-height, 48px);
    width: var(--abc-mobile-action-height, 48px);
    min-width: var(--abc-mobile-action-height, 48px);
    min-height: var(--abc-mobile-action-height, 48px);
    height: var(--abc-mobile-action-height, 48px);
    padding: 0;
    justify-content: center;
    background: var(--abc-mobile-cart-background, var(--abc-blue)) !important;
    border-color: var(--abc-mobile-cart-background, var(--abc-blue)) !important;
  }
  .abc-header-action--cart svg {
    width: 22px;
    height: 22px;
  }
  .abc-header-action--cart .abc-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 21px;
    height: 21px;
    padding-inline: 4px;
    border: 2px solid #fff;
  }
  .abc-header-action--cart > span:not(.abc-cart-count) {
    display: none !important;
  }
  .abc-search {
    grid-area: search;
    grid-column: auto;
    order: initial;
    width: 100%;
    padding-bottom: 0;
  }
  .abc-menu-toggle {
    grid-area: menu;
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(34,48,71,.08);
    border-radius: 14px;
    background: var(--abc-mobile-menu-background, #FFDE21);
    color: var(--abc-mobile-menu-text, var(--abc-ink));
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(34,48,71,.10);
  }
  .abc-menu-toggle:hover,
  .abc-menu-toggle[aria-expanded="true"] {
    background: var(--abc-mobile-menu-background, #FFDE21);
    color: var(--abc-mobile-menu-text, var(--abc-ink));
    filter: brightness(.97);
  }
  .abc-menu-toggle__label { display: inline; }
  .abc-main-nav {
    display: none;
    padding: 0 0 12px;
    background: #fff;
  }
  .abc-main-nav.is-open { display: block; }
  .abc-main-nav > .abc-container {
    width: min(100% - 22px, 1180px);
    padding: 7px;
    border: 1px solid rgba(34,48,71,.10);
    border-top: 4px solid var(--abc-mobile-menu-background, #FFDE21);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(34,48,71,.12);
  }
  .abc-main-nav ul { min-height: 0; padding: 0; flex-direction: column; align-items: stretch; gap: 3px; }
  .abc-main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: var(--abc-mobile-menu-text, var(--abc-ink));
    font-size: 1rem;
  }
  .abc-main-nav a:hover,
  .abc-main-nav .current-menu-item > a {
    background: color-mix(in srgb, var(--abc-mobile-menu-background, #FFDE21) 28%, #fff);
    color: var(--abc-mobile-menu-text, var(--abc-ink));
    box-shadow: none;
  }
  .abc-main-nav > .abc-container > ul > li { display: block; }
  .abc-main-nav > .abc-container > ul > li:not(:last-child)::after { display: none; }
  .abc-main-nav .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 3px 0 0 12px;
    padding: 4px;
    border: 0;
    border-left: 3px solid var(--abc-mobile-menu-background, #FFDE21);
    border-radius: 0 0 0 10px;
    background: #f8f9fc;
    box-shadow: none;
  }
  .abc-main-nav .sub-menu a { color: var(--abc-mobile-menu-text, var(--abc-ink)); }

  .abc-hero { padding: 44px 0 62px; }
  .abc-hero__grid { grid-template-columns: 1fr; }
  .abc-benefits__grid { grid-template-columns: 1fr; }
  .abc-whatsapp-cta { grid-template-columns: 1fr; padding: 26px; text-align: center; }
  .abc-whatsapp-cta__icon { margin-inline: auto; }
  .abc-whatsapp-cta .abc-button { grid-column: auto; justify-self: center; width: 100%; }
  .abc-category-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products {
    grid-template-columns: repeat(var(--abc-catalog-mobile-columns, 2), minmax(0, 1fr));
    gap: 14px;
  }
  body.home .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(var(--abc-home-mobile-columns, 2), minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  body.home .woocommerce ul.products li.product,
  body.home.woocommerce-page ul.products li.product {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
  .abc-section { padding: 40px 0; }
  .abc-section__heading {
    align-items: var(--abc-section-flex-align, center);
    flex-direction: column;
  }
  .abc-cta { grid-template-columns: 1fr; }
  .abc-footer-grid { grid-template-columns: 1fr 1fr; }
  .abc-footer-brand { grid-column: 1 / -1; }
  .abc-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .abc-container { width: min(100% - 22px, 1180px); }
  .abc-header-main { gap: 10px 8px; }
  .abc-branding img {
    max-width: min(var(--abc-mobile-logo-width, 128px), 34vw);
    max-height: 58px;
  }
  .abc-header-action--products {
    flex-basis: min(var(--abc-mobile-files-width, 142px), 38vw);
    width: min(var(--abc-mobile-files-width, 142px), 38vw);
    min-width: min(var(--abc-mobile-files-width, 142px), 38vw);
    min-height: var(--abc-mobile-action-height, 48px);
    height: var(--abc-mobile-action-height, 48px);
    padding-inline: 10px;
    font-size: .72rem;
  }
  .abc-header-action--cart {
    flex-basis: var(--abc-mobile-action-height, 48px);
    width: var(--abc-mobile-action-height, 48px);
    min-width: var(--abc-mobile-action-height, 48px);
    min-height: var(--abc-mobile-action-height, 48px);
    height: var(--abc-mobile-action-height, 48px);
  }
  .abc-search input[type="search"] { padding-right: 96px; }
  .abc-search button { min-width: 84px; padding-inline: 10px; font-size: .8rem; }
  .abc-branding { min-width: 0; }
  .abc-branding__name { font-size: 1.05rem; }
  .abc-header-action { padding: 9px 11px; }
  .abc-hero h1 { font-size: 1.55rem; }
  .abc-hero-card { padding: 12px; }
  .abc-hero-card__image { height: 180px; }
  .abc-category-grid { gap: 10px; }
  .abc-category-card { min-height: 118px; }
  .woocommerce ul.products { gap: 10px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
    padding: var(--abc-card-image-title-spacing-mobile, 5px) var(--abc-card-title-side-padding-mobile, 12px) 0;
    font-size: var(--abc-card-title-size-mobile, 16px);
    text-align: var(--abc-card-title-align-mobile, center);
  }
  .woocommerce ul.products li.product .price {
    margin-top: var(--abc-card-title-price-spacing-mobile, 12px);
    margin-bottom: var(--abc-card-price-bottom-spacing-mobile, 8px);
    padding-inline: var(--abc-card-title-side-padding-mobile, 12px);
    font-size: var(--abc-card-price-size-mobile, 18px);
    text-align: var(--abc-card-price-align-mobile, center);
  }
  .woocommerce ul.products li.product .button { margin: 10px 12px 12px; width: calc(100% - 24px); min-height: 42px; padding: 9px 8px; font-size: .82rem; }
  .woocommerce ul.products li.product .onsale,
  .woocommerce ul.products li.product .abc-offer-badge,
  .woocommerce ul.products li.product .offer-badge {
    right: 8px;
    bottom: 8px;
    top: auto;
    left: auto;
    font-size: var(--abc-offer-badge-font-size-mobile, 14px);
  }
  .abc-footer-grid { grid-template-columns: 1fr; }
}


@media (max-width: 900px) {
  .abc-home-banner__inner { width: min(100%, calc(100% - 12px)); }

  /*
   * Banner móvel: o contêiner acompanha exatamente a altura proporcional
   * da imagem, sem reservar a altura mínima usada no desktop.
   */
  body.home .abc-home-banner__media {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-bottom: 26px;
    padding: 0 !important;
    overflow: visible;
    aspect-ratio: auto !important;
    border-radius: 0 0 18px 18px;
  }
  body.home .abc-home-banner__slides {
    overflow: hidden;
    border-radius: inherit;
  }
  body.home .abc-home-banner__media .abc-home-banner__link {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    line-height: 0;
  }
  body.home .abc-home-banner__media img {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
    object-fit: initial !important;
  }
  .abc-home-banner__arrow {
    width: 38px;
    height: 38px;
  }
  .abc-home-banner__arrow--previous { left: 8px; }
  .abc-home-banner__arrow--next { right: 8px; }
  .abc-home-banner__dots {
    bottom: -22px;
    gap: 6px;
    padding: 5px 8px;
  }
  .abc-home-banner__dot {
    width: 8px;
    height: 8px;
  }
  .abc-home-banner__placeholder {
    min-height: 200px;
    border-radius: 0 0 18px 18px;
  }
}


/* Loja: catálogo mais limpo */
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-result-count,
.tax-product_cat .woocommerce-ordering,
.tax-product_tag .woocommerce-result-count,
.tax-product_tag .woocommerce-ordering {
  display: none !important;
}

.post-type-archive-product .woocommerce ul.products li.product .price,
.tax-product_cat .woocommerce ul.products li.product .price,
.tax-product_tag .woocommerce ul.products li.product .price {
  display: block;
  width: 100%;
  text-align: center;
  color: #0b3f9f;
}


/* Área "Meus produtos" */
body.woocommerce-account {
  background: #fffaf2;
}
.woocommerce-account .abc-content {
  width: min(1180px, calc(100% - 32px));
  padding: 46px 0 72px;
}
.woocommerce-account .abc-entry {
  max-width: none;
}
.woocommerce-account .abc-entry > h1 {
  margin: 0 0 26px;
  color: #1f73d8;
  font-family: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1;
}
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  position: sticky;
  top: 18px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 2px solid #ffe083;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(34, 48, 71, .08);
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li + li {
  margin-top: 5px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: 14px;
  color: #223047;
  font-weight: 800;
  line-height: 1.15;
}
.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f8cff;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(2) a::before { background: #ff3b9d; }
.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(3) a::before { background: #24b36b; }
.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(4) a::before { background: #f7a61b; }
.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(5) a::before { background: #8a55c3; }
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: #fff8dc;
  color: #1f1f1f;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: #FFDE21;
  color: #1f1f1f;
  box-shadow: 0 8px 16px rgba(255, 222, 33, .22);
}
.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
  padding: 25px;
  border: 2px solid #d4e7ff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(34, 48, 71, .08);
}
.abc-downloads-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 2px solid #b9dcff;
  border-radius: 18px;
  background: #eef7ff;
}
.abc-downloads-intro__icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #2f8cff;
  color: #fff;
}
.abc-downloads-intro strong {
  display: block;
  margin-bottom: 2px;
  color: #173a68;
  font-size: 1.05rem;
}
.abc-downloads-intro p {
  margin: 0;
  color: #52647d;
  font-size: .9rem;
  line-height: 1.4;
}
.woocommerce-account table.woocommerce-table--order-downloads {
  display: block;
  width: 100%;
  margin: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
}
.woocommerce-account table.woocommerce-table--order-downloads thead {
  display: none;
}
.woocommerce-account table.woocommerce-table--order-downloads tbody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.woocommerce-account table.woocommerce-table--order-downloads tr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  overflow: hidden;
  border: 2px solid #e8edf5;
  border-top: 6px solid #2f8cff;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(34, 48, 71, .06);
}
.woocommerce-account table.woocommerce-table--order-downloads tr:nth-child(4n + 2) { border-top-color: #ff3b9d; }
.woocommerce-account table.woocommerce-table--order-downloads tr:nth-child(4n + 3) { border-top-color: #24b36b; }
.woocommerce-account table.woocommerce-table--order-downloads tr:nth-child(4n + 4) { border-top-color: #FFDE21; }
.woocommerce-account table.woocommerce-table--order-downloads td {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 11px 15px !important;
  border: 0 !important;
  text-align: left !important;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-product {
  grid-column: 1 / -1;
  min-height: 78px;
  padding-top: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #edf0f5 !important;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-product a {
  color: #223047;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-product a:hover {
  color: #1f73d8;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-remaining,
.woocommerce-account table.woocommerce-table--order-downloads td.download-expires {
  color: #223047;
  font-size: .9rem;
  font-weight: 800;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-remaining::before,
.woocommerce-account table.woocommerce-table--order-downloads td.download-expires::before {
  display: block;
  margin-bottom: 3px;
  color: #7a879a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-remaining::before {
  content: "Downloads";
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-expires::before {
  content: "Disponível até";
}
.woocommerce-account table.woocommerce-table--order-downloads td.download-file {
  grid-column: 1 / -1;
  padding-top: 5px !important;
  padding-bottom: 16px !important;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file {
  width: 100% !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 11px 16px !important;
  border-radius: 999px !important;
  background: #2f8cff !important;
  color: #fff !important;
  box-shadow: 0 9px 18px rgba(47, 140, 255, .22);
  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file::before {
  content: "↓";
  margin-right: 7px;
  font-size: 1.15rem;
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file::after {
  content: "Baixar material";
  font-size: .93rem;
  font-weight: 900;
}
.woocommerce-account .woocommerce-MyAccount-downloads-file:hover {
  background: #1f73d8 !important;
  color: #fff !important;
}
.woocommerce-account .woocommerce-info {
  margin: 0;
  padding: 22px;
  border: 2px solid #ffe083;
  border-left: 6px solid #FFDE21;
  border-radius: 18px;
  background: #fff9df;
}

@media (max-width: 900px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    position: static;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li + li {
    margin-top: 0;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 42px;
    padding: 9px 13px;
    white-space: nowrap;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .woocommerce-account .abc-content {
    width: min(100% - 20px, 1180px);
    padding-top: 30px;
  }
  .woocommerce-account .abc-entry > h1 {
    margin-bottom: 18px;
    font-size: 2rem;
  }
  .abc-downloads-intro {
    align-items: flex-start;
    padding: 14px;
  }
  .abc-downloads-intro__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
  .woocommerce-account table.woocommerce-table--order-downloads tbody {
    grid-template-columns: 1fr;
  }
  .woocommerce-account table.woocommerce-table--order-downloads td {
    padding-inline: 13px !important;
  }
}


/* Bordas das imagens de produtos e categorias */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  border: 2px solid #FFD64B;
  border-radius: var(--abc-card-image-radius, 18px) var(--abc-card-image-radius, 18px) 0 0;
}

.abc-category-card__image {
  border: 2px solid #FFD64B;
}

@media (max-width: 430px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  body.search .woocommerce ul.products {
    grid-template-columns: repeat(var(--abc-catalog-mobile-columns, 2), minmax(0, 1fr));
    gap: 10px;
  }
  body.home .woocommerce ul.products,
  body.home .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(var(--abc-home-mobile-columns, 2), minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: auto !important;
    max-width: none;
    min-width: 0;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
    font-size: var(--abc-card-title-size-mobile, 16px);
  }
  .woocommerce ul.products li.product .price {
    font-size: var(--abc-card-price-size-mobile, 18px);
  }
}


/* Cabeçalho: Meus produtos rosa e Carrinho azul. */
.abc-header-action--products {
  background: var(--abc-pink);
  border-color: var(--abc-pink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 59, 157, .22);
}
.abc-header-action--products:hover {
  background: var(--abc-pink-dark);
  border-color: var(--abc-pink-dark);
  color: #fff;
}
.abc-header-actions > a:not(.abc-header-action--products) {
  background: var(--abc-blue);
  border-color: var(--abc-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 140, 255, .22);
}
.abc-header-actions > a:not(.abc-header-action--products):hover {
  background: var(--abc-blue-dark);
  border-color: var(--abc-blue-dark);
  color: #fff;
}
.abc-cart-count {
  background: #FFDE21;
  color: #223047;
  font-weight: 800;
}

/* Busca própria do tema. */
.abc-search .abc-search-form,
.abc-search .woocommerce-product-search,
.abc-search form[role="search"] {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}
.abc-search .abc-search-input,
.abc-search input.search-field,
.abc-search input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 132px 0 18px;
  border: 1px solid #dfe3eb;
  border-radius: 999px;
  background: #f7f8fb;
  color: var(--abc-ink);
  box-shadow: none;
  outline: none;
}
.abc-search .abc-search-submit,
.abc-search button[type="submit"],
.abc-search input[type="submit"] {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 40px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--abc-blue);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(47, 140, 255, .22);
  cursor: pointer;
  appearance: none;
}
.abc-search .abc-search-submit:hover,
.abc-search button[type="submit"]:hover,
.abc-search input[type="submit"]:hover {
  background: var(--abc-blue-dark);
  color: #fff;
}

/* Botões Comprar dos cards. */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple,
.woocommerce ul.products li.product a.product_type_variable,
.woocommerce ul.products li.product .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  min-height: 46px;
  margin: 12px 16px 16px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--abc-pink);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 18px rgba(255, 59, 157, .22);
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover,
.woocommerce ul.products li.product a.product_type_simple:hover,
.woocommerce ul.products li.product a.product_type_variable:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
  background: var(--abc-pink-dark);
  color: #fff;
}

@media (max-width: 767px) {
  .abc-search .abc-search-submit,
  .abc-search button[type="submit"],
  .abc-search input[type="submit"] {
    min-width: 96px;
    font-size: .9rem;
  }
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.add_to_cart_button,
  .woocommerce ul.products li.product a.product_type_simple,
  .woocommerce ul.products li.product a.product_type_variable,
  .woocommerce ul.products li.product .added_to_cart {
    width: calc(100% - 24px);
    min-height: 42px;
    margin: 10px 12px 12px;
    font-size: .92rem;
  }
}

/* Vitrines configuráveis da página inicial — versão 0.11.11 */
.home .abc-home-showcase {
  --abc-showcase-background: #ffffff;
  --abc-showcase-title: #223047;
  --abc-showcase-accent: #ff3b9d;
  --abc-showcase-border: #edf0f6;
  --abc-showcase-button-background: #ff3b9d;
  --abc-showcase-button-text: #ffffff;
  background: var(--abc-showcase-background);
}
.home .abc-home-showcase .abc-section__heading {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--abc-showcase-border);
}
.home .abc-home-showcase .abc-section__heading h2 {
  color: var(--abc-showcase-title);
}
.home .abc-home-showcase .abc-eyebrow,
.home .abc-home-showcase .abc-section__heading > a {
  color: var(--abc-showcase-accent);
}
.home .abc-home-showcase .abc-section__heading > a {
  font-weight: 900;
}
.home .abc-home-showcase .woocommerce ul.products li.product {
  border-color: var(--abc-showcase-border);
  background: #fff;
}
.home .abc-home-showcase .woocommerce ul.products li.product .button {
  background: var(--abc-showcase-button-background);
  color: var(--abc-showcase-button-text);
}
.home .abc-home-showcase .woocommerce ul.products li.product .button:hover {
  background: #ffd64b;
  color: #223047;
}
.home .abc-home-showcase--pink {
  --abc-showcase-background: #fff4fa;
  --abc-showcase-title: #e82483;
  --abc-showcase-accent: #e82483;
  --abc-showcase-border: #ffc6df;
  --abc-showcase-button-background: #ff3b9d;
  --abc-showcase-button-text: #ffffff;
}
.home .abc-home-showcase--blue {
  --abc-showcase-background: #eef7ff;
  --abc-showcase-title: #1f73d8;
  --abc-showcase-accent: #1f73d8;
  --abc-showcase-border: #bfddff;
  --abc-showcase-button-background: #2f8cff;
  --abc-showcase-button-text: #ffffff;
}
.home .abc-home-showcase--yellow {
  --abc-showcase-background: #fff8df;
  --abc-showcase-title: #a86f00;
  --abc-showcase-accent: #a86f00;
  --abc-showcase-border: #ffe39b;
  --abc-showcase-button-background: #ffd64b;
  --abc-showcase-button-text: #223047;
}
.home .abc-home-showcase--green {
  --abc-showcase-background: #eefcf3;
  --abc-showcase-title: #168552;
  --abc-showcase-accent: #168552;
  --abc-showcase-border: #bdeecb;
  --abc-showcase-button-background: #24b36b;
  --abc-showcase-button-text: #ffffff;
}
.home .abc-home-showcase--lavender {
  --abc-showcase-background: #f7f2ff;
  --abc-showcase-title: #7650c7;
  --abc-showcase-accent: #7650c7;
  --abc-showcase-border: #d9c7ff;
  --abc-showcase-button-background: #8f65df;
  --abc-showcase-button-text: #ffffff;
}
.home .abc-home-showcase--white {
  --abc-showcase-background: #ffffff;
  --abc-showcase-title: #223047;
  --abc-showcase-accent: #ff3b9d;
  --abc-showcase-border: #edf0f6;
  --abc-showcase-button-background: #ff3b9d;
  --abc-showcase-button-text: #ffffff;
}

