/* ========================================
   CREAM CHERRY — Sections
   ======================================== */

/* ─────────────────────────────────────────
   FLAVORS
───────────────────────────────────────── */
.flavors { padding: var(--space-2xl) 0; background: var(--white); }

.flavor-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.flavor-tab {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
}

.flavor-tab:hover { background: var(--red-pale); color: var(--red); }
.flavor-tab.active {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 14px rgba(200,16,46,0.3);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,16,46,0.2);
}

.flavor-card__img {
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  transition: transform var(--dur-base) var(--ease-bounce);
}

.flavor-card:hover .flavor-card__img { transform: scale(1.08); }

.flavor-card__body {
  padding: 1rem 1.2rem 1.3rem;
}

.flavor-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.flavor-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}

.flavor-card__desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.flavor-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flavor-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
}

.flavor-card__btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--dur-fast) var(--ease-bounce);
}

.flavor-card__btn:hover {
  background: var(--red-dark);
  transform: scale(1.15);
}

.flavors-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ─────────────────────────────────────────
   DIFERENCIAIS
───────────────────────────────────────── */
.diferenciais {
  padding: var(--space-2xl) 0;
  background: var(--gray-50);
}

.diferenciais__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.diferenciais__content .section-desc { max-width: 100%; margin-bottom: 2.5rem; }

.diferencial-list { display: flex; flex-direction: column; gap: 1.5rem; }

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diferencial-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--red-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,16,46,0.1);
}

.diferencial-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}

.diferencial-item span {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Visual column — stacked card layout */
.diferenciais__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Background number watermark */
.big-number {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}

.big-number-label {
  display: none; /* hidden — number speaks for itself */
}

/* Cards — stacked, clearly visible */
.visual-card {
  position: relative; /* NOT absolute anymore */
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1.5px solid var(--gray-100);
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
  animation: cardFloat 5s ease-in-out infinite;
}
.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(200,16,46,0.12);
}

/* Stagger the floating animation */
.visual-card--main      { animation-delay: 0s;   margin-left: 0;    margin-right: 3rem; }
.visual-card--secondary { animation-delay: 0.7s; margin-left: 3rem; margin-right: 0; }
.visual-card--tertiary  { animation-delay: 1.4s; margin-left: 0;    margin-right: 3rem; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.vc-emoji {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: var(--radius-md);
  background: var(--red-pale);
}

.vc-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}

.vc-text span {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   DELIVERY BANNER
───────────────────────────────────────── */
.delivery-banner {
  background: var(--red);
  padding: var(--space-xl) 0;
  overflow: hidden;
  position: relative;
}

.delivery-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.delivery-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.delivery-banner__content .eyebrow { color: rgba(255,255,255,0.7); }

.delivery-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.delivery-banner__content h2 em { font-style: italic; color: #FFD0D8; }

.delivery-banner__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.delivery-apps { display: flex; gap: 1rem; flex-wrap: wrap; }

.delivery-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  background: white;
  color: var(--red);
  transition: all var(--dur-base) var(--ease-out);
}
.delivery-app-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.delivery-app-btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.delivery-app-btn--outline:hover { background: rgba(255,255,255,0.1); }

.delivery-banner__visual { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.delivery-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.delivery-time strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-align: center;
}

.delivery-time span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  display: block;
  text-align: center;
  letter-spacing: 0.06em;
}

.delivery-float {
  background: white;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ─────────────────────────────────────────
   DEPOIMENTOS
───────────────────────────────────────── */
.depoimentos {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--gray-100);
  transition: all var(--dur-base) var(--ease-out);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.depoimento-card--featured {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.03);
}

.depoimento-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.stars {
  color: #FFD700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.depoimento-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento-card--featured p { color: rgba(255,255,255,0.9); }

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red-pale);
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-card--featured .author-avatar {
  background: rgba(255,255,255,0.2);
  color: white;
}

.depoimento-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.depoimento-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.depoimento-card--featured .depoimento-author strong,
.depoimento-card--featured .depoimento-author span { color: rgba(255,255,255,0.85); }

/* ─────────────────────────────────────────
   SUSTENTABILIDADE
───────────────────────────────────────── */
.sustentabilidade {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.suste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.suste-eyebrow { color: #2D8A4E; }

.suste-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.suste-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.suste-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: #F0FAF3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #2D8A4E;
}

.suste-item strong { display: block; font-weight: 700; color: var(--gray-800); margin-bottom: 0.25rem; }
.suste-item p     { font-size: 0.88rem; color: var(--gray-600); line-height: 1.55; }

.eco-badge {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D8A4E, #4CAF70);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(45,138,78,0.25);
  animation: rotateSlow 20s linear infinite;
  margin: 0 auto;
}

@keyframes rotateSlow {
  from { box-shadow: 0 20px 60px rgba(45,138,78,0.25); }
  50%  { box-shadow: 0 30px 80px rgba(45,138,78,0.4); }
  to   { box-shadow: 0 20px 60px rgba(45,138,78,0.25); }
}

.eco-badge-inner {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eco-pct {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #2D8A4E;
  line-height: 1;
}

.eco-label {
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.4;
  margin-top: 0.4rem;
}

/* ─────────────────────────────────────────
   FAQ / SUPORTE
───────────────────────────────────────── */
.suporte {
  padding: var(--space-2xl) 0;
  background: var(--gray-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--dur-fast);
}

.faq-question:hover { color: var(--red); }
.faq-question.open  { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
  font-size: 0.85rem;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer.open { max-height: 200px; }

.faq-answer p {
  padding: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Contact card */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.contact-card > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-options { display: flex; flex-direction: column; gap: 1rem; }

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all var(--dur-base) var(--ease-out);
}

.contact-option:hover {
  background: var(--red-pale);
  border-color: rgba(200,16,46,0.2);
  transform: translateX(4px);
}

.contact-option i {
  font-size: 1.3rem;
  color: var(--red);
  width: 24px;
  text-align: center;
}

.contact-option strong { display: block; font-size: 0.9rem; color: var(--gray-800); }
.contact-option span   { font-size: 0.8rem; color: var(--gray-400); }

/* ─────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────── */
.newsletter {
  background: var(--black);
  padding: var(--space-xl) 0;
}

.newsletter__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  overflow: hidden;
}

.newsletter__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
}

.newsletter__content h2 em { color: var(--red-light); font-style: italic; }

.newsletter__content p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: min(460px, 100%);
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: border-color var(--dur-fast);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--red); }

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all var(--dur-base) var(--ease-bounce);
  animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.5);
}

@keyframes waBounce {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SECTIONS
───────────────────────────────────────── */
@media (max-width: 900px) {
  .diferenciais__split,
  .suste-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }

  .diferenciais__visual { min-height: 280px; }

  .delivery-banner__inner { grid-template-columns: 1fr; }
  .delivery-banner__visual { display: none; }

  .depoimentos-grid { grid-template-columns: 1fr; }
  .depoimento-card--featured { transform: none; }
  .depoimento-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { text-align: center; }
}

@media (max-width: 400px) {
  .flavors-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   CATEGORY CARDS (Home)
════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,16,46,0.2);
}

.cat-card__visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base);
}

.cat-card:hover .cat-card__visual svg {
  transform: scale(1.1) rotate(-3deg);
  transition: transform var(--dur-base) var(--ease-bounce);
}

.cat-card__body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cat-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.cat-card__tag--green { color: #2D8A4E; }
.cat-card__tag--blue  { color: #1565C0; }

.cat-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gray-800);
}

.cat-card__body p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.cat-card__cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: gap var(--dur-fast);
}

.cat-card:hover .cat-card__cta { gap: 0.7rem; }

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

/* ════════════════════════════════════════
   FLAVOR SHOWCASE (Home)
════════════════════════════════════════ */
.flavors-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.flavor-showcase-card {
  background: var(--card-bg, var(--cream));
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0,0,0,0.04);
  transition: all var(--dur-base) var(--ease-out);
}
.flavor-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.fsc-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform var(--dur-base) var(--ease-bounce);
}
.flavor-showcase-card:hover .fsc-img { transform: scale(1.12) rotate(3deg); }

.fsc-body {
  padding: 1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.fsc-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.fsc-body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gray-800);
}
.fsc-body p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}
.fsc-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.flavor-showcase-card:hover .fsc-cta { gap: 0.7rem; }

/* ════════════════════════════════════════
   CURSOS SECTION (Home)
════════════════════════════════════════ */
.cursos-section {
  background: var(--white);
}

.cursos-split {
  display: grid;
  grid-template-columns: 1fr min(420px, 100%);
  gap: 4rem;
  align-items: start;
}

.cursos-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.curso-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.curso-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--red-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
}

.curso-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}
.curso-item span {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.curso-card-big {
  background: var(--gray-800);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: white;
}

.ccb-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1.25rem;
}

.curso-card-big h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.curso-card-big p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.ccb-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.ccb-meta span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ccb-meta i { color: var(--red-light); width: 14px; }

/* Responsive */
@media (max-width: 1100px) {
  .flavors-showcase { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cursos-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .flavors-showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .flavors-showcase { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PRODUCTS REAL SECTION (Home)
   — Com slots para fotos reais
════════════════════════════════════════ */
.products-real-section {
  background: var(--white);
}

.prod-real-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.prod-real-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow  0.35s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}

.prod-real-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}

/* Large first card */
.prod-real-card--large .prod-real-img { min-height: 260px; }
.prod-real-card:not(.prod-real-card--large) .prod-real-img { min-height: 200px; }

/* Image area */
.prod-real-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #C8102E 0%, #8B0010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* When real image is added */
.prod-real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.prod-real-card:hover .prod-real-img img {
  transform: scale(1.06);
}

/* Placeholder state (before real photo) */
.prod-real-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0.7;
}

/* Card body */
.prod-real-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  background: var(--white);
}

.prod-real-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.prod-real-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.2;
}

.prod-real-body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.prod-real-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.prod-real-card:hover .prod-real-cta { gap: 0.7rem; }

/* Responsive */
@media (max-width: 1100px) {
  .prod-real-grid { grid-template-columns: 1fr 1fr; }
  .prod-real-card--large { grid-column: 1 / -1; }
  .prod-real-card--large .prod-real-img { min-height: 220px; }
  .prod-real-card--large { flex-direction: row; }
  .prod-real-card--large .prod-real-img { width: 50%; min-height: unset; }
  .prod-real-card--large .prod-real-body { width: 50%; }
}

@media (max-width: 700px) {
  .prod-real-grid { grid-template-columns: 1fr; }
  .prod-real-card--large { flex-direction: column; }
  .prod-real-card--large .prod-real-img,
  .prod-real-card--large .prod-real-body { width: 100%; }
  .prod-real-card--large .prod-real-img { min-height: 200px; }
}

/* ── Depoimento tags (itens da avaliação) ── */
.depoimento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.depoimento-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--red-pale);
  color: var(--red);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
}
.depoimento-tags--light span {
  background: rgba(255,255,255,0.18);
  color: white;
}
