/*!
Theme Name: Amaryllis
Theme URI: https://farmaciaamaryllis.com.br
Description: Tema Amaryllis — Manipulação, Homeopatia, Suplementação, Dermocosméticos. Filho do Hello Elementor.
Author: Agência Capsucria
Version: 2.1.0
Template: hello-elementor
Text Domain: amaryllis
*/

/* ──────────────────────────────────────────────────────
   FONTES
   Por enquanto via Google Fonts. Quando os .woff2 estiverem
   em /fonts/, trocar por @font-face self-hosted.
   ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ──────────────────────────────────────────────────────
   TOKENS
   ────────────────────────────────────────────────────── */
:root {
  /* Cores */
  --amy-violet:        #7B2D8E;
  --amy-violet-dark:   #561F66;
  --amy-violet-light:  #B86BC2;
  --amy-gold:          #F2C230;
  --amy-gold-dark:     #E5A800;
  --amy-green:         #25D366;
  --amy-cream:         #FBF6E8;
  --amy-text:          #2D2A2E;
  --amy-text-soft:     #5C5860;
  --amy-text-muted:    #8A858C;
  --amy-border:        #E5E1DA;
  --amy-bg:            #FFFFFF;

  /* Tipo */
  --amy-font-display:  'Fraunces', Georgia, serif;
  --amy-font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --amy-container:     1180px;
  --amy-gutter:        24px;

  /* Raios */
  --amy-r-card:        14px;
  --amy-r-pill:        999px;
  --amy-r-input:        8px;
  --amy-r-large:       18px;

  /* Sombras */
  --amy-shadow-sm:     0 1px 4px rgba(0,0,0,0.04);
  --amy-shadow-card:   0 14px 32px rgba(86, 31, 102, 0.12);
  --amy-shadow-cta:    0 4px 16px rgba(86, 31, 102, 0.3);
  --amy-shadow-final:  0 6px 18px rgba(0,0,0,0.2);

  /* Gradiente violeta padrão */
  --amy-gradient-violet: linear-gradient(135deg, var(--amy-violet) 0%, var(--amy-violet-dark) 100%);
}

/* ──────────────────────────────────────────────────────
   RESET + BASE
   ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--amy-font-body);
  color: var(--amy-text);
  line-height: 1.6;
  margin: 0;
  background: var(--amy-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--amy-violet);
  text-decoration: none;
  transition: color 150ms;
}
a:hover { color: var(--amy-violet-dark); }

p { margin: 0 0 1em; }

/* ──────────────────────────────────────────────────────
   TIPOGRAFIA
   ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--amy-font-display);
  color: var(--amy-text);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem);    }   /* 32-48px */
h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); color: var(--amy-violet-dark); }   /* 25-36px */
h3 { font-family: var(--amy-font-body); font-weight: 600; font-size: 1.125rem; letter-spacing: 0; color: var(--amy-text); }

/* ──────────────────────────────────────────────────────
   CONTAINER UTIL
   ────────────────────────────────────────────────────── */
.amy-container {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
}

/* Helper visualmente oculto */
.amy-sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ──────────────────────────────────────────────────────
   TOPBAR
   ────────────────────────────────────────────────────── */
.amy-topbar {
  background: var(--amy-violet-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.875rem;  /* 14px */
  padding: 8px 0;
}
.amy-topbar a { color: inherit; transition: color 150ms; }
.amy-topbar a:hover { color: var(--amy-gold); }
.amy-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.amy-topbar-phone svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}
.amy-topbar .amy-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.amy-topbar-info { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.amy-topbar-social { display: flex; gap: 14px; align-items: center; }
.amy-topbar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.amy-topbar-social svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 600px) {
  .amy-topbar { font-size: 0.78rem; padding: 6px 0; }
  .amy-topbar .amy-container { justify-content: center; }
  .amy-topbar-info { gap: 12px; justify-content: center; }
}

/* ──────────────────────────────────────────────────────
   HEADER
   ────────────────────────────────────────────────────── */
.amy-header {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--amy-border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--amy-shadow-sm);
}
.amy-header .amy-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.amy-logo a { display: inline-flex; flex-direction: column; line-height: 1; }
.amy-logo img { max-height: 56px; width: auto; }
.amy-logo-text {
  font-family: var(--amy-font-display);
  font-weight: 700;
  font-size: 1.75rem; /* 28px */
  color: var(--amy-violet);
  letter-spacing: 0;
}
.amy-logo-sub {
  font-family: var(--amy-font-body);
  font-weight: 500;
  font-size: 0.5625rem; /* 9px */
  color: var(--amy-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

/* Nav */
.amy-nav-wrap { display: flex; align-items: center; }
.amy-nav {
  display: flex; gap: 28px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.amy-nav li a {
  color: var(--amy-text);
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  position: relative;
  padding: 8px 0;
  transition: color 150ms;
  display: inline-block;
}
.amy-nav li a:hover,
.amy-nav li.current-menu-item > a,
.amy-nav li.current-menu-parent > a {
  color: var(--amy-violet);
}
.amy-nav li.current-menu-item > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--amy-violet);
}

/* Submenu */
.amy-nav .sub-menu {
  list-style: none; margin: 0; padding: 12px 0;
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border: 1px solid var(--amy-border); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none; z-index: 100;
}
.amy-nav li:hover > .sub-menu { display: block; }
.amy-nav .sub-menu li { display: block; }
.amy-nav .sub-menu li a {
  display: block; padding: 10px 18px;
  font-weight: 500;
}
.amy-nav .sub-menu li a:hover { background: var(--amy-cream); color: var(--amy-violet); }
.amy-nav .sub-menu li a::after { display: none; }

/* Mobile menu toggle */
.amy-menu-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--amy-text);
  padding: 0;
}
.amy-menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .amy-menu-toggle { display: inline-flex; }
  .amy-nav-wrap {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    border-bottom: 1px solid var(--amy-border);
  }
  .amy-nav-wrap.is-open { display: block; }
  .amy-nav {
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 24px;
  }
  .amy-nav li a {
    padding: 14px 0;
    border-bottom: 1px solid var(--amy-border);
    display: block;
  }
  .amy-nav li:last-child a { border-bottom: 0; }
  .amy-nav .sub-menu {
    position: static; box-shadow: none; border: 0;
    padding: 0 0 0 16px; display: block;
  }
}

/* ──────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────── */
.amy-footer {
  background: var(--amy-violet-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
  font-size: 0.92rem;
}
.amy-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.amy-footer h4 {
  color: var(--amy-gold);
  font-family: var(--amy-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}
.amy-footer .brand-block img {
  max-width: 200px !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.amy-footer .brand-block-name {
  font-family: var(--amy-font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 12px;
}
.amy-footer .brand-block p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}
.amy-footer ul { list-style: none; margin: 0; padding: 0; }
.amy-footer ul li { margin-bottom: 8px; }
.amy-footer,
.amy-footer p,
.amy-footer li,
.amy-footer a { color: rgba(255,255,255,0.92); }
.amy-footer a { transition: color 150ms; }
.amy-footer a:hover { color: var(--amy-gold); }
.amy-footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.amy-footer-disclaimer p { margin: 0 0 8px; }

@media (max-width: 768px) {
  .amy-footer { padding: 48px 0 20px; }
  .amy-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ──────────────────────────────────────────────────────
   FLOATING WHATSAPP
   ────────────────────────────────────────────────────── */
.amy-floating-wpp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.amy-floating-wpp .amy-wpp-tooltip {
  background: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  font-size: 0.875rem;
  color: var(--amy-text);
  font-weight: 600;
  white-space: nowrap;
}
.amy-floating-wpp .amy-wpp-button {
  background: var(--amy-green);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  transition: transform 200ms;
}
.amy-floating-wpp:hover .amy-wpp-button { transform: scale(1.08); }
.amy-floating-wpp .amy-wpp-button svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 600px) {
  .amy-floating-wpp .amy-wpp-tooltip { display: none; }
  .amy-floating-wpp { bottom: 16px; right: 16px; }
}

/* ──────────────────────────────────────────────────────
   SISTEMA DE BOTÕES
   ────────────────────────────────────────────────────── */
.amy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--amy-r-pill);
  font-family: var(--amy-font-body);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap;
}

/* Tamanhos */
.amy-btn-sm  { padding: 12px 24px; font-size: 0.875rem; gap: 8px; }   /* 14px */
.amy-btn-md  { padding: 13px 22px; font-size: 0.875rem; gap: 8px; }
.amy-btn-lg  { padding: 18px 32px; font-size: 1.0625rem; gap: 10px; } /* 17px */
.amy-btn-block { display: flex; width: 100%; justify-content: center; }

/* Variantes */
.amy-btn-gold {
  background: var(--amy-gold);
  color: var(--amy-text);
  box-shadow: var(--amy-shadow-cta);
}
.amy-btn-gold:hover {
  background: var(--amy-gold-dark);
  color: var(--amy-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86,31,102,0.4);
}
.amy-btn-gold svg { fill: var(--amy-text); }

.amy-btn-wpp-green {
  background: var(--amy-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.32);
}
.amy-btn-wpp-green:hover {
  background: #1da955;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
}
.amy-btn-wpp-green svg { fill: #fff; }
.amy-btn-wpp-green span { color: #fff; }

.amy-btn-outline-violet {
  background: transparent;
  color: var(--amy-violet);
  border: 2px solid var(--amy-violet);
  font-weight: 600;
}
.amy-btn-outline-violet:hover {
  background: var(--amy-violet);
  color: #fff;
}

.amy-btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  font-weight: 700;
}
.amy-btn-ghost-white span {
  color: #fff;
}
.amy-btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.amy-btn-ghost-white svg {
  stroke: #fff;
  stroke-width: 2.4;
}

/* ──────────────────────────────────────────────────────
   SECTION HEADER PADRÃO
   ────────────────────────────────────────────────────── */
.amy-section { padding: 80px 0; }
.amy-section--alt { background: var(--amy-cream); }
.amy-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 var(--amy-gutter);
}
.amy-section__eyebrow {
  display: inline-block;
  color: var(--amy-violet);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.amy-section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.6vw, 2.25rem); /* 28-36px */
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.amy-section__head p {
  font-size: 1.0625rem; /* 17px */
  color: var(--amy-text-soft);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .amy-section { padding: 56px 0; }
  .amy-section__head { margin-bottom: 32px; }
}

/* ══════════════════════════════════════════════════════
   HOME — SECTIONS ESPECÍFICAS
   ══════════════════════════════════════════════════════ */

/* HERO HOME */
.amy-home-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(242,194,48,0.14) 0%, transparent 55%),
    linear-gradient(135deg, rgba(123,45,142,0.88) 0%, rgba(86,31,102,0.94) 100%),
    url('/wp-content/uploads/2026/05/craft-hands.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.amy-home-hero .amy-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.amy-home-hero__content {
  display: flex; flex-direction: column; gap: 18px;
}
.amy-home-hero__eyebrow {
  display: inline-block; align-self: flex-start;
  background: rgba(242,194,48,0.18);
  border: 1px solid rgba(242,194,48,0.35);
  color: var(--amy-gold);
  padding: 6px 14px;
  border-radius: var(--amy-r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.amy-home-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem); /* 32-48px */
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.amy-home-hero h1 .amy-accent { color: var(--amy-gold); }
.amy-home-hero p.lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.amy-home-hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}

/* Glass card lateral */
.amy-home-hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.amy-home-hero__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--amy-r-large);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  max-width: 360px;
}
.amy-home-hero__card h3 {
  color: var(--amy-gold);
  font-family: var(--amy-font-body);
  font-size: 0.6875rem; /* 11px */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
}
.amy-home-hero__card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.amy-home-hero__card li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.875rem;
  line-height: 1.4;
}
.amy-home-hero__card li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--amy-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23561F66'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .amy-home-hero { padding: 56px 0 72px; }
  .amy-home-hero .amy-container { grid-template-columns: 1fr; gap: 32px; }
  .amy-home-hero__visual { order: -1; display: none; } /* esconde no mobile pra simplificar */
  .amy-home-hero__card { max-width: 100%; }
}

/* TRUST STRIP */
.amy-trust {
  background: var(--amy-cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--amy-border);
}
.amy-trust__grid {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.amy-trust__num {
  font-family: var(--amy-font-display);
  font-weight: 700;
  color: var(--amy-violet-dark);
  font-size: clamp(2rem, 4vw, 2.5rem); /* 32-40px */
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.amy-trust__label {
  font-size: 0.875rem;
  color: var(--amy-text-soft);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .amy-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ESPECIALIDADES — Card grid */
.amy-spec-grid {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amy-spec-card {
  background: #fff;
  border: 1px solid var(--amy-border);
  border-radius: var(--amy-r-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}
.amy-spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--amy-violet-light);
  box-shadow: var(--amy-shadow-card);
}
.amy-spec-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amy-cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--amy-violet);
}
.amy-spec-card__icon svg { width: 28px; height: 28px; }
.amy-spec-card h3 {
  font-family: var(--amy-font-body);
  font-size: 1.0625rem; /* 17px */
  font-weight: 600;
  margin: 0;
  color: var(--amy-text);
}
.amy-spec-card p {
  font-size: 0.875rem;
  color: var(--amy-text-soft);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) { .amy-spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amy-spec-grid { grid-template-columns: 1fr; } }

/* PRODUCT CARDS — Featured + Catalog grid */
.amy-products-grid {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .amy-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amy-products-grid { grid-template-columns: 1fr; gap: 20px; } }

.amy-product-card {
  background: #fff;
  border: 1px solid var(--amy-border);
  border-radius: var(--amy-r-card);
  padding: 24px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 200ms, box-shadow 200ms;
}
.amy-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--amy-shadow-card);
}
.amy-product-card__img {
  background: var(--amy-cream);
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.amy-product-card__img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.amy-product-card__cat {
  font-size: 0.625rem; /* 10px */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amy-violet);
  margin: 0;
}
.amy-product-card__title {
  font-family: var(--amy-font-body);
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--amy-text);
  margin: 0;
  line-height: 1.3;
}
.amy-product-card__sub {
  font-size: 0.875rem;
  color: var(--amy-text-soft);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* HOW IT WORKS — Steps */
.amy-steps {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.amy-step {
  background: #fff;
  border: 1px solid var(--amy-border);
  border-radius: var(--amy-r-card);
  padding: 36px 28px 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.amy-step__num {
  position: absolute;
  top: -22px; left: 28px;
  width: 44px; height: 44px;
  background: var(--amy-violet);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--amy-font-display);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 14px rgba(86,31,102,0.25);
}
.amy-step h3 {
  font-family: var(--amy-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--amy-text);
}
.amy-step p {
  font-size: 0.9375rem; /* 15px */
  color: var(--amy-text-soft);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .amy-steps { grid-template-columns: 1fr; gap: 28px; }
}

/* FINAL CTA — Violet block */
.amy-final-cta {
  background:
    radial-gradient(circle at 90% 20%, rgba(242,194,48,0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(123,45,142,0.90) 0%, rgba(86,31,102,0.96) 100%),
    url('/wp-content/uploads/2026/05/manifesto-still.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.amy-final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  position: relative;
  z-index: 1;
}
.amy-final-cta h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3.6vw, 2rem); /* 30-32px */
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.amy-final-cta p {
  color: rgba(255,255,255,0.92);
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.55;
  max-width: 600px;
}
.amy-final-cta .amy-btn { margin-top: 16px; }

/* ══════════════════════════════════════════════════════
   CATÁLOGO / SHOP — archive-product
   ══════════════════════════════════════════════════════ */

/* Page hero compacto (Catálogo + Single Produto) */
.amy-page-hero {
  background:
    radial-gradient(circle at 85% 25%, rgba(242,194,48,0.14) 0%, transparent 55%),
    var(--amy-gradient-violet);
  color: #fff;
  padding: 56px 0 56px;
  position: relative;
  overflow: hidden;
}
.amy-page-hero__inner {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  z-index: 1;
}
.amy-breadcrumb {
  font-size: 0.8125rem; /* 13px */
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.amy-breadcrumb a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.amy-breadcrumb a:hover { color: var(--amy-gold); }
.amy-breadcrumb-sep { margin: 0 6px; opacity: 0.6; }

.amy-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.75rem); /* 32-44px */
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.amy-page-hero p.subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0;
  max-width: 720px;
}

/* Filters bar */
.amy-filters {
  background: #fff;
  border-bottom: 1px solid var(--amy-border);
  padding: 20px 0;
}
.amy-filters__inner {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 0 var(--amy-gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.amy-filter-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
}
.amy-filter-chip {
  display: inline-flex;
  padding: 13px 18px;
  border-radius: var(--amy-r-pill);
  background: var(--amy-cream);
  color: var(--amy-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 200ms;
  line-height: 1;
}
.amy-filter-chip:hover { background: rgba(123,45,142,0.12); }
.amy-filter-chip.is-active {
  background: var(--amy-violet);
  color: #fff;
}
.amy-filters__right { display: flex; gap: 18px; align-items: center; }
.amy-filters__count {
  font-size: 0.8125rem;
  color: var(--amy-text-soft);
}
.amy-filters__sort {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--amy-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--amy-text);
  cursor: pointer;
  line-height: 1;
}

/* Grid section header */
.amy-grid-section { padding: 56px 0 80px; }
.amy-grid-section__head {
  max-width: var(--amy-container);
  margin: 0 auto 32px;
  padding: 0 var(--amy-gutter);
}
.amy-grid-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); /* 24-32px */
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.amy-grid-section__head p {
  font-size: 0.9375rem;
  color: var(--amy-text-soft);
  margin: 0;
}

/* Pagination */
.amy-pagination {
  max-width: var(--amy-container);
  margin: 48px auto 0;
  padding: 0 var(--amy-gutter);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.amy-pagination .page-numbers,
.amy-pagination a {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--amy-border);
  color: var(--amy-text);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  transition: all 150ms;
}
.amy-pagination .page-numbers:hover,
.amy-pagination a:hover {
  border-color: var(--amy-violet);
  color: var(--amy-violet);
}
.amy-pagination .page-numbers.current,
.amy-pagination .current {
  background: var(--amy-violet);
  color: #fff;
  border-color: var(--amy-violet);
}

/* CTA Strip — Catálogo */
.amy-cta-strip {
  background: var(--amy-cream);
  padding: 48px 0;
}
.amy-cta-strip__card {
  max-width: var(--amy-container);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--amy-border);
  border-radius: var(--amy-r-large);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.amy-cta-strip__text {
  flex: 1;
}
.amy-cta-strip__text h2 {
  font-family: var(--amy-font-display);
  font-size: 1.625rem; /* 26px */
  color: var(--amy-violet-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.amy-cta-strip__text p {
  font-size: 1rem;
  color: var(--amy-text-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 580px;
}

@media (max-width: 768px) {
  .amy-cta-strip__card {
    flex-direction: column; align-items: stretch;
    padding: 28px 24px; gap: 20px; text-align: center;
  }
  .amy-cta-strip__card .amy-btn { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   SINGLE PRODUTO
   ══════════════════════════════════════════════════════ */

/* Layout principal: galeria + summary */
.amy-product-layout {
  max-width: var(--amy-container);
  margin: 0 auto;
  padding: 60px var(--amy-gutter) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .amy-product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px var(--amy-gutter) 0;
  }
}

/* Galeria */
.amy-product-gallery {
  display: flex; flex-direction: column; gap: 16px;
}
.amy-product-gallery__main {
  background: var(--amy-cream);
  border: 1px solid var(--amy-border);
  border-radius: var(--amy-r-card);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.amy-product-gallery__main img {
  max-width: 80%; max-height: 80%;
  object-fit: contain;
}
.amy-product-gallery__thumbs {
  display: flex; gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
.amy-product-gallery__thumbs li {
  width: 80px; height: 80px;
  border-radius: 8px;
  border: 1px solid var(--amy-border);
  background: var(--amy-cream);
  cursor: pointer;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.amy-product-gallery__thumbs li.is-active {
  border: 2px solid var(--amy-violet);
}
.amy-product-gallery__thumbs li img {
  max-width: 80%; max-height: 80%;
  object-fit: contain;
}

/* Summary */
.amy-product-summary {
  display: flex; flex-direction: column; gap: 16px;
}
.amy-product-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amy-violet);
  margin: 0;
}
.amy-product-cat a {
  color: var(--amy-violet);
  text-decoration: none;
}
.amy-product-cat a:hover { color: var(--amy-violet-dark); text-decoration: underline; }

.amy-product-name {
  font-family: var(--amy-font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 3.5vw, 2rem); /* 26-32px */
  color: var(--amy-text);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

.amy-product-section-title {
  font-family: var(--amy-font-display);
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  color: var(--amy-violet-dark);
  margin: 16px 0 0;
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 8px;
}
.amy-product-section-title::after {
  content: ''; display: block;
  width: 36px; height: 2px;
  background: var(--amy-gold);
  margin-top: 6px;
}

.amy-product-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--amy-text);
}
.amy-product-description p { margin: 0 0 14px; }
.amy-product-description strong { color: var(--amy-violet-dark); font-weight: 700; }

/* Lista de benefícios — auto-detecta <ul> dentro da descrição */
.amy-product-description ul,
.amy-benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 24px !important;
  display: flex; flex-direction: column; gap: 10px;
}
.amy-product-description ul li,
.amy-benefits li {
  position: relative;
  padding-left: 36px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.amy-product-description ul li::before,
.amy-benefits li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  background-color: var(--amy-violet);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

/* Heading "Principais benefícios" */
.amy-benefits-title {
  font-family: var(--amy-font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--amy-violet);
  margin: 8px 0 0;
}

/* Esconde elementos default do WC que não usamos */
.single-product .product .price,
.single-product .product .product_meta,
.single-product .product .stock,
.single-product .woocommerce-tabs,
.single-product .woocommerce-product-rating,
.single-product .related.products,
.single-product .upsells.products { display: none !important; }

/* CTA do Single Produto — proporção menor + cor preta forçada + hug content */
.amy-product-summary .amy-btn-gold {
  align-self: flex-start;
  padding: 14px 24px !important;
  font-size: 15px !important;
  color: var(--amy-text) !important;
  margin-top: 8px;
}
.amy-product-summary .amy-btn-gold svg {
  width: 18px !important;
  height: 18px !important;
  fill: var(--amy-text) !important;
}
.amy-product-summary .amy-btn-gold span {
  color: var(--amy-text) !important;
}

/* ══════════════════════════════════════════════════════
   ACESSIBILIDADE — prefers-reduced-motion
   ══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .amy-btn:hover,
  .amy-spec-card:hover,
  .amy-product-card:hover,
  .amy-floating-wpp:hover .amy-wpp-button {
    transform: none !important;
  }
}

/* Foco visível pra acessibilidade */
:focus-visible {
  outline: 2px solid var(--amy-violet);
  outline-offset: 2px;
  border-radius: 4px;
}
.amy-btn:focus-visible {
  outline-offset: 4px;
}

/* ══════════════════════════════════════════════════════
   ADMIN BAR fix
   ══════════════════════════════════════════════════════ */
.admin-bar .amy-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .amy-header { top: 46px; }
}
