/* =============================================
   PODESER — Custom Styles  v2
   Fonts: Fredoka, Raleway, Inter
   ============================================= */

/* ── SPA page-view switching ───────────────── */
.page-view[hidden] { display: none !important; }
.page-view {
  min-height: calc(100vh - var(--header-height));
}
.page-view.page-entering {
  animation: ps-page-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-view.page-leaving {
  animation: ps-page-out 0.2s ease forwards;
  pointer-events: none;
}
@keyframes ps-page-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Legacy tokens (keep for Tailwind compat) ── */
  --blue-primary:    #3E6CF3;
  --purple-primary:  #5372FF;
  --purple-dark:     #815EFF;
  --pink-accent:     #FF94D6;
  --green-btn:       #69CC73;
  --green-accent:    #6ACC74;
  --dark-text:       #161616;
  --body-text:       #171717;
  --gray-text:       #444;
  --white:           #ffffff;
  --footer-bg:       rgba(129, 94, 255, 0.82);

  /* ── Layout ── */
  --header-height: 80px;   /* matches .header-inner height */
  --max-width:     1224px;

  /* ── Brand palette 2025 ── */
  --brand-roxo:    #c78dff;
  --brand-amarelo: #fbc83f;
  --brand-rosa:    #f259c1;
  --brand-azul:    #0367a5;
  --brand-verde:   #98c156;
  --brand-laranja: #fb963c;
  --brand-coral:   #ed5c3b;
  --brand-creme:   #f7ece8;

  /* ── Section tints ── */
  --tint-roxo:    #faf5ff;
  --tint-amarelo: #fffdf0;
  --tint-rosa:    #fff5fb;
  --tint-verde:   #f8fff4;

  /* ── Design tokens ── */
  --radius-card:  20px;
  --radius-pill:  9999px;
  --shadow-xs:    0 2px  8px rgba(0,0,0,0.06);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --trans-fast:   0.18s ease;
  --trans-base:   0.28s ease;
  --trans-slow:   0.45s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark-text);
  background: #fff;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }


/* =============================================
   ACCESSIBILITY — focus & motion
   ============================================= */

:focus-visible {
  outline: 3px solid var(--brand-rosa);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Mouse sparkles (hero cursor trail) ────── */
.mouse-sparkle-star {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.mouse-sparkle-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(221 184 255 / 0.45);
  transform: translate(-50%, -50%);
}
@keyframes ms-fall-1 {
  0%   { opacity: 0.85; transform: translate(-50%,-50%) rotate(0deg)   scale(1);   }
  100% { opacity: 0;    transform: translate(calc(-50% - 18px), calc(-50% + 52px)) rotate(-25deg) scale(0.1); }
}
@keyframes ms-fall-2 {
  0%   { opacity: 0.85; transform: translate(-50%,-50%) rotate(0deg)   scale(1);   }
  100% { opacity: 0;    transform: translate(calc(-50% + 4px),  calc(-50% + 58px)) rotate(15deg)  scale(0.1); }
}
@keyframes ms-fall-3 {
  0%   { opacity: 0.85; transform: translate(-50%,-50%) rotate(0deg)   scale(1);   }
  100% { opacity: 0;    transform: translate(calc(-50% + 20px), calc(-50% + 48px)) rotate(42deg)  scale(0.1); }
}

@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;
  }
  .page-view { animation: none !important; }
}


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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: box-shadow var(--trans-base), background var(--trans-base),
              backdrop-filter var(--trans-base);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(83,114,255,0.10);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  transition: opacity var(--trans-fast);
}
.logo-img:hover { opacity: 0.85; }

/* Nav */
.header-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--purple-dark);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--trans-fast), background var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--brand-rosa);
  background: rgba(242,89,193,0.07);
}

.nav-link--active {
  color: var(--brand-rosa);
  font-weight: 700;
  background: rgba(242,89,193,0.10);
}

/* ── Rainbow nav colors ──────────────────── */
.nav-list > li:nth-child(1) > .nav-link                        { color: #e84040; }
.nav-list > li:nth-child(1) > .nav-link:hover,
.nav-list > li:nth-child(1) > .nav-link.nav-link--active       { color: #e84040; background: rgba(232,64,64,0.10); }

.nav-list > li:nth-child(2) > .nav-link                        { color: #f97316; }
.nav-list > li:nth-child(2) > .nav-link:hover,
.nav-list > li:nth-child(2) > .nav-link.nav-link--active       { color: #f97316; background: rgba(249,115,22,0.10); }

.nav-list > li:nth-child(3) > .nav-link                        { color: #ca8a04; }
.nav-list > li:nth-child(3) > .nav-link:hover,
.nav-list > li:nth-child(3) > .nav-link.nav-link--active       { color: #ca8a04; background: rgba(202,138,4,0.10); }

.nav-list > li:nth-child(4) > .nav-link                        { color: #16a34a; }
.nav-list > li:nth-child(4) > .nav-link:hover,
.nav-list > li:nth-child(4) > .nav-link.nav-link--active       { color: #16a34a; background: rgba(22,163,74,0.10); }

.nav-list > li:nth-child(5) > .nav-link                        { color: #2563eb; }
.nav-list > li:nth-child(5) > .nav-link:hover,
.nav-list > li:nth-child(5) > .nav-link.nav-link--active       { color: #2563eb; background: rgba(37,99,235,0.10); }

.nav-list > li:nth-child(6) > .nav-link                        { color: #9333ea; }
.nav-list > li:nth-child(6) > .nav-link:hover,
.nav-list > li:nth-child(6) > .nav-link.nav-link--active       { color: #9333ea; background: rgba(147,51,234,0.10); }

/* Dropdown */
.nav-item--dropdown { position: relative; }

.dropdown-icon { transition: transform var(--trans-fast); }
.nav-item--dropdown:hover .dropdown-icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.04);
  list-style: none;
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-text);
  border-radius: 8px;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.dropdown-link:hover { background: #f5f0ff; color: var(--blue-primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: stretch;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* White organic blob */
.hero-white-blob {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  z-index: 1;
  width: 60%;
  background: #fff;
  clip-path: polygon(
    0% 0%, 86% 0%, 88% 4%, 90% 10%, 91% 18%, 90% 26%,
    87% 34%, 84% 42%, 83% 50%, 85% 58%, 88% 66%, 90% 74%,
    90% 82%, 88% 90%, 85% 100%, 0% 100%
  );
}

.hero-sparkles {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 720px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 3;
}

.hero-brain {
  position: absolute;
  top: 40px; left: 2vw;
  z-index: 6;
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-brand-card {
  position: absolute;
  bottom: 56px; left: 28%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}

.brand-card-img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.18));
}

.hero-book {
  position: absolute;
  bottom: 40px; left: 50%;
  z-index: 6;
  pointer-events: none;
}

.book-img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 5;
  width: 58%;
  max-width: 820px;
  padding: 210px 0 100px 7vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.08;
  /* Gradient text */
  background: linear-gradient(135deg, #815EFF 0%, var(--brand-rosa) 55%, var(--brand-amarelo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  color: #1a1a2e;
  margin-bottom: 40px;
  line-height: 1.3;
}

.sparkles-text {
  position: relative;
  display: inline-block;
}

.sparkle-particle {
  position: absolute;
  pointer-events: none;
  z-index: 20;
}

/* ── Saiba Mais button ────────────────────── */
.btn-saiba-mais {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-btn);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast),
              box-shadow var(--trans-fast);
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(106,204,116,0.35);
}

.btn-saiba-mais:hover {
  background: var(--brand-verde);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(152,193,86,0.45);
}

.btn-saiba-mais--blue {
  background: var(--brand-rosa);
  font-size: 13px;
  padding: 11px 28px;
  align-self: auto;
  box-shadow: 0 4px 16px rgba(242,89,193,0.30);
}
.btn-saiba-mais--blue:hover {
  background: var(--brand-roxo);
  box-shadow: 0 10px 28px rgba(199,141,255,0.45);
}


/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
  position: relative;
  background: var(--tint-roxo);
  padding: 100px 0 80px;
  overflow: hidden;
}

.about-sparkles {
  position: absolute;
  right: -100px; top: 0;
  width: 500px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: 0 12px 40px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.08);
}

.about-deco-img {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 120px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
  animation: ps-heart-pulse 2.4s ease-in-out infinite;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Eyebrow label — fixed from 48px to proper tag */
.about-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-rosa);
  display: inline-block;
  background: rgba(242,89,193,0.08);
  border: 1px solid rgba(242,89,193,0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

.about-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.about-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text);
}

/* Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-dot--pink   { background: var(--pink-accent); }
.pillar-dot--blue   { background: var(--blue-primary); }
.pillar-dot--green  { background: var(--green-accent); }
.pillar-dot--yellow { background: var(--brand-amarelo); }

.pillar-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--body-text);
}


/* =============================================
   SERVICES + STATS SECTION
   ============================================= */

.services-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--tint-roxo);
}

.services-bg {
  display: none;
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Service cards */
.services-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
  /* Subtle top accent bar */
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-roxo), var(--brand-rosa), var(--brand-amarelo));
  opacity: 0;
  transition: opacity var(--trans-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(199,141,255,0.22);
}

.service-card:hover::before { opacity: 1; }

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img { transform: scale(1.06); }

.service-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #5271FF;
}

.service-card__desc {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  flex: 1;
}

/* SABER MAIS button */
.btn-saber-mais {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF94D6;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background var(--trans-fast), transform var(--trans-fast),
              box-shadow var(--trans-fast);
  text-decoration: none;
  align-self: flex-start;
}

.btn-saber-mais:hover {
  background: var(--brand-rosa);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,89,193,0.35);
}

.btn-saber-mais--outline {
  background: var(--brand-rosa);
  border: none;
  color: #fff;
  align-self: auto;
}
.btn-saber-mais--outline:hover {
  background: var(--brand-roxo);
  box-shadow: 0 6px 20px rgba(199,141,255,0.4);
}

/* Stats */
.stats-block { text-align: center; }

.stats-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--dark-text);
  margin-bottom: 36px;
  line-height: 1.4;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 56px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(129,94,255,0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  min-width: 130px;
  transition: background var(--trans-fast), transform var(--trans-fast),
              box-shadow var(--trans-fast);
}

.stat-item:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--purple-dark);
  line-height: 1;
}

.stat-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #666;
  text-align: center;
  max-width: 120px;
  letter-spacing: 0.3px;
}


/* =============================================
   METHOD SECTION
   ============================================= */

.method-section {
  background: var(--tint-amarelo);
  padding: 100px 0;
}

.method-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.method-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: #5271FF;
}

.method-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text);
}

/* Method tags — proper pill chips with distinct colors */
.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.method-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--brand-rosa);
}

.method-list li:nth-child(2)::before { background: var(--blue-primary); }
.method-list li:nth-child(3)::before { background: var(--brand-verde);  }
.method-list li:nth-child(4)::before { background: var(--brand-roxo);   }
.method-list li:nth-child(5)::before { background: var(--brand-rosa);   }
.method-list li:nth-child(6)::before { background: var(--blue-primary); }
.method-list li:nth-child(7)::before { background: var(--brand-verde);  }

.method-image-col { display: flex; justify-content: center; }

.method-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
  background: var(--tint-rosa);
  padding: 80px 0 100px;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Mini stats */
.mini-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-stat__number {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--brand-verde);
  line-height: 1;
}

.mini-stat__label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.testimonials-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--green-btn);
  margin-bottom: 48px;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(242,89,193,0.10);
  transition: box-shadow var(--trans-base), transform var(--trans-base);
  position: relative;
  overflow: hidden;
}

/* Large decorative quotation mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  right: 28px;
  font-family: 'Fredoka', sans-serif;
  font-size: 120px;
  color: var(--brand-rosa);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(242,89,193,0.15);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(242,89,193,0.25);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-text);
}

.testimonial-role {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.testimonial-quote {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.78;
  color: #444;
  font-style: italic;
}


/* =============================================
   EVENTS SECTION
   ============================================= */

.events-section {
  background: var(--tint-verde);
  padding: 80px 0 100px;
}

.events-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.events-header { margin-bottom: 48px; }

/* Eyebrow label */
.events-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 10px;
  display: inline-block;
}

.events-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--purple-primary);
  line-height: 1.2;
}

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

.event-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(152,193,86,0.25);
}

.event-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

/* Subtle gradient overlay on event card images */
.event-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20,10,50,0.35), transparent);
  pointer-events: none;
}

.event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card__img { transform: scale(1.06); }

.event-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card__title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-text);
  line-height: 1.35;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* Event badge (activity type pill) */
.event-card__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.event-card__badge--workshop { background: #e5f5d0; color: #4a7c20; }
.event-card__badge--aula     { background: #dce8ff; color: #1a4fb8; }
.event-card__badge--teatro   { background: #f3e0ff; color: #7a20a0; }

/* Short subtitle under the title */
.event-card__desc {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #888;
  margin: -4px 0 2px;
  line-height: 1.4;
}

/* Upcoming events: subtle highlight ring */
.event-card--upcoming {
  outline: 2px solid var(--green-primary);
  outline-offset: -2px;
}
.event-card--upcoming .event-card__img-wrap::before {
  content: 'Próximo';
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green-primary);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 4;
}

/* Recurring activities card (no image) */
.event-card--recurring {
  background: linear-gradient(135deg, #f8fff0 0%, #f0f8ff 100%);
  border: 1.5px dashed rgba(152,193,86,0.5);
}
.event-card__body--full {
  padding: 24px 22px 26px;
  gap: 14px;
}
.event-recurring-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.event-recurring-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.event-recurring-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-recurring-item strong {
  font-size: 14px;
  color: var(--dark-text);
  font-weight: 700;
}
.event-recurring-item span {
  font-size: 12px;
  color: #888;
}


/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.benefits-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(199,141,255,0.84) 0%,
    rgba(83,114,255,0.82) 50%,
    rgba(3,103,165,0.82) 100%);
}

.benefits-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-image-col { display: flex; justify-content: center; }

.benefits-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.30);
}

.benefits-text-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefits-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 42px);
  color: #fff;
  line-height: 1.22;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
  padding: 10px 16px;
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.16);
  transform: translateX(4px);
}

.benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--green-accent);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}


/* =============================================
   NEWSLETTER SECTION
   ============================================= */

.newsletter-section {
  background: linear-gradient(135deg, var(--brand-roxo) 0%, #9c4dff 50%, #7c3aed 100%);
  background-size: 200% 200%;
  animation: ps-rainbow-gradient 8s ease infinite;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 34px);
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.newsletter-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-wrap: nowrap;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  border: none;
  border-radius: 0;
  outline: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  transition: background var(--trans-fast);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.60); }
.newsletter-input:focus        { background: rgba(255,255,255,0.26); }

.btn-enviar {
  background: var(--brand-amarelo);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
  white-space: nowrap;
}

.btn-enviar:hover {
  background: var(--brand-laranja);
  transform: scale(1.04);
}


/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--footer-bg);
  padding: 52px 0 36px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  height: 90px;
  width: 90px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.footer-tagline strong { font-weight: 700; color: #fff; }

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  flex: 1;
  min-width: 280px;
  align-items: flex-end;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-link {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  transition: color var(--trans-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover { color: #fff; }
.footer-link--small { font-size: 12px; color: rgba(255,255,255,0.55); }

.footer-sep { color: rgba(255,255,255,0.35); font-size: 13px; }

.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.footer-by {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}


/* =============================================
   WHATSAPP BUBBLE
   ============================================= */

.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.whatsapp-bubble::before,
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: ps-pulse-ring 2.2s ease-out infinite;
}

.whatsapp-bubble::after { animation-delay: 1.1s; }

.whatsapp-bubble:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.60);
}

.whatsapp-icon { width: 30px; height: 30px; }


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }


/* =============================================
   KEYFRAMES
   ============================================= */

@keyframes ps-page-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes ps-heart-pulse {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.07); }
}

@keyframes ps-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes ps-float-slow {
  0%, 100% { transform: translateY(0px)  rotate(0deg); }
  33%       { transform: translateY(-7px) rotate(1.5deg); }
  66%       { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes ps-sparkle {
  0%, 100% { opacity: 1;   transform: scale(1)   rotate(0deg);   }
  25%       { opacity: 0.6; transform: scale(1.3) rotate(45deg);  }
  50%       { opacity: 0.9; transform: scale(0.8) rotate(90deg);  }
  75%       { opacity: 0.7; transform: scale(1.2) rotate(135deg); }
}

@keyframes ps-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

@keyframes ps-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0;   }
}

@keyframes ps-rainbow-gradient {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes ps-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes ps-wave-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =============================================
   WAVE SEPARATORS
   ============================================= */

.wave-sep {
  position: relative;
  height: 72px;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  pointer-events: none;
}

.wave-sep--dark-end {
  height: 100px;
  background: var(--tint-roxo);
}

.wave-sep svg { display: block; width: 100%; height: 100%; }

.wave-sep--animated svg {
  animation: ps-wave-slide 12s linear infinite;
  width: 200%;
}


/* =============================================
   SPARKLE STAR DECORATIONS
   ============================================= */

.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  line-height: 1;
  display: block;
  opacity: 0.88;
  animation: ps-sparkle 3.8s ease-in-out infinite;
  transform: rotate(var(--r, 0deg));
}

.hero-deco-img {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: multiply;
}

.sparkle-star {
  position: absolute;
  pointer-events: none;
  opacity: 0.80;
  animation: ps-sparkle 3s ease-in-out infinite;
}

.sparkle-star--xs { width: 16px; height: 16px; }
.sparkle-star--sm { width: 24px; height: 24px; }
.sparkle-star--md { width: 36px; height: 36px; }
.sparkle-star--lg { width: 52px; height: 52px; }

.sparkle-star:nth-child(2) { animation-delay: 0.8s; }
.sparkle-star:nth-child(3) { animation-delay: 1.6s; }
.sparkle-star:nth-child(4) { animation-delay: 2.2s; }

.twinkle-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ps-twinkle 2.5s ease-in-out infinite;
}
.twinkle-dot:nth-child(2) { animation-delay: 0.6s; }
.twinkle-dot:nth-child(3) { animation-delay: 1.2s; }
.twinkle-dot:nth-child(4) { animation-delay: 1.8s; }

.hero-img-float { animation: ps-float-slow 5s ease-in-out infinite; }


/* =============================================
   MOBILE NAVIGATION
   ============================================= */

@media (max-width: 920px) {
  .hamburger { display: flex; }

  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(83,114,255,0.10);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* visibility delay matches slide-out so it hides only after animation */
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                opacity    0.32s ease,
                visibility 0s   linear 0.32s;
    z-index: 99;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    /* open: no delay on visibility so it appears instantly */
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                opacity    0.32s ease,
                visibility 0s   linear 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link {
    padding: 11px 14px;
    font-size: 15px;
    width: 100%;
    border-radius: 10px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    padding: 4px 0 4px 14px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


/* =============================================
   RESPONSIVE — TABLET
   ============================================= */

@media (max-width: 1024px) {
  .services-cards-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content {
    flex: 0 0 62%;
    max-width: 62%;
    padding-left: 5vw;
  }

  .about-inner       { grid-template-columns: 1fr; gap: 40px; }
  .about-photo       { max-width: 100%; }
  .method-inner      { grid-template-columns: 1fr; gap: 40px; }
  .method-image-col  { order: -1; }
  .benefits-inner    { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .events-grid       { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */

@media (max-width: 640px) {
  /* ── Hero: stacked — imagem topo, texto abaixo ── */
  .hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  /* Banner com a foto — ocupa ~56% do ecrã */
  .hero-bg-wrap {
    position: relative;
    width: 100%;
    height: 56vh;
    min-height: 300px;
    max-height: 420px;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 0;
  }

  /* Mostra o lado direito da foto onde a menina está */
  .hero-bg-img {
    object-fit: cover;
    object-position: right top;
    width: 100%;
    height: 100%;
  }

  /* Fade suave na base da imagem → branco */
  .hero-bg-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    z-index: 3;
  }

  /* Garantir que não há pseudo-overlay residual no hero-section */
  .hero-section::after { content: none; }

  /* Esconder blob e decorações desktop — !important para garantir */
  .hero-white-blob  { display: none !important; }
  .hero-sparkles,
  .hero-book,
  .hero-brand-card,
  .hero-brain       { display: none; }

  /* Esconder estrelas estáticas */
  .hero-section .sparkle-star { display: none; }

  /* Esconder desenhos decorativos no mobile */
  .hero-deco-img { display: none !important; }

  /* Texto abaixo da imagem */
  .hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    padding: 12px 24px 52px;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 46px);
  }

  .services-cards-row { grid-template-columns: 1fr; }
  .stats-grid         { gap: 16px 24px; }
  .events-grid        { grid-template-columns: 1fr; }

  .footer-inner   { flex-direction: column; }
  .footer-links-col {
    text-align: left;
    align-items: flex-start;
  }
  .footer-nav { justify-content: flex-start; }

  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    box-shadow: none;
    gap: 10px;
    overflow: visible;
  }

  .newsletter-input {
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  .btn-enviar {
    border-radius: var(--radius-pill);
    padding: 14px 32px;
  }

  .header-inner,
  .about-inner,
  .services-inner,
  .method-inner,
  .testimonials-inner,
  .events-inner,
  .benefits-inner,
  .newsletter-inner,
  .footer-inner {
    padding: 0 18px;
  }

  .stat-item {
    min-width: 100px;
    padding: 18px 20px;
  }
}


/* =============================================
   INNER PAGES — banner + sections
   ============================================= */

.inner-banner {
  position: relative;
  width: 100%;
  height: 260px;
  margin-top: var(--header-height);   /* ← CWV/design fix: clear fixed header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(199,141,255,0.78) 0%,
    rgba(83,114,255,0.75) 50%,
    rgba(3,103,165,0.72) 100%);
}

.inner-banner__title {
  position: relative;
  z-index: 2;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  color: #fff;
  letter-spacing: 3px;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0,0,0,0.30);
}

.inner-section { padding: 80px 0; }

.inner-section--white    { background: #fff; }
.inner-section--light    { background: var(--tint-roxo); }
.inner-section--dark     { background: #1a1a2e; }
.inner-section--yellow   { background: var(--tint-amarelo); }
.inner-section--pink     { background: var(--tint-rosa); }
.inner-section--green    { background: var(--tint-verde); }
.inner-section--gradient {
  background: linear-gradient(135deg, var(--brand-roxo) 0%, #7c3aed 100%);
}

.inner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* Section label/tag */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.section-label--blue   { color: var(--blue-primary); }
.section-label--green  { color: var(--green-btn); }
.section-label--purple { color: var(--purple-dark); }

.section-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-body {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #2a2a3a;
  margin-bottom: 16px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--img-right .col-img  { order: 1; }
.two-col--img-right .col-text { order: 0; }

.col-img img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

/* Values list */
.values-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.values-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
}

.values-list li::before {
  content: '✦';
  color: #FF94D6;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Objective cards */
.obj-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.obj-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.obj-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.obj-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--oc, #c78dff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.obj-card__icon svg {
  width: 100%;
  height: 100%;
  color: inherit;
}

.obj-card__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.obj-card__text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

/* Service list */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-item__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-item__subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
}

.svc-item__text {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #2a2a3a;
  white-space: pre-line;
}

.svc-item__tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Service pills */
.services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.services-pill {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-dark);
  background: rgba(129,94,255,0.07);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  border: 1.5px solid rgba(129,94,255,0.18);
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.services-pill:hover {
  background: rgba(129,94,255,0.12);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   SERVICES PAGE — Visual Redesign
───────────────────────────────────────── */
.svc-hero {
  position: relative;
  background: linear-gradient(135deg, #3a5ff8 0%, #a46fff 55%, #FF94D6 100%);
  padding: 96px 60px 80px;
  text-align: center;
  overflow: hidden;
  margin-top: var(--header-height);
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.svc-hero__label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 12px;
}
.svc-hero__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.svc-hero__sub {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.6;
}
.svc-hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.svc-hero__wave svg { width: 100%; display: block; }

/* Category section */
.svc-cat-section { padding: 64px 0 72px; }

.svc-cat__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.svc-cat__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cat-c, #5271FF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-cat__badge svg { width: 26px; height: 26px; }
.svc-cat__label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cat-c, #5271FF);
  margin: 0 0 4px;
}
.svc-cat__heading {
  font-size: 30px;
  color: #1d1e20;
  margin: 0;
  line-height: 1.2;
}

/* Service cards grid */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  border-top: 4px solid var(--sc, #5271FF);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.svc-card__icon {
  width: 46px;
  height: 46px;
  color: var(--sc, #5271FF);
  margin-bottom: 6px;
}
.svc-card__icon svg { width: 100%; height: 100%; color: inherit; }
.svc-card__title {
  font-size: 21px;
  color: var(--sc, #5271FF);
  margin: 0;
  line-height: 1.25;
}
.svc-card__sub {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin: -4px 0 0;
}
.svc-card__text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.svc-card__cta {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--sc, #5271FF);
  text-decoration: none;
  letter-spacing: 0.3px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease;
}
.svc-card__cta:hover { gap: 8px; }

.emp-tagline {
  font-size: clamp(18px, 2vw, 24px);
  color: #2a2a3a;
  max-width: 780px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-hero__title { font-size: 44px; }
}
@media (max-width: 560px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-hero { padding: 72px 24px 64px; }
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__address {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #815EFF, #5271FF);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.contact-info__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.contact-info__label {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  color: var(--purple-dark);
}

.contact-info__value {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #2a2a3a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #5271FF;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  border: 1.5px solid #d8d8ee;
  border-radius: 12px;
  padding: 13px 16px;
  background: #fafafa;
  outline: none;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast),
              background var(--trans-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--purple-dark);
  box-shadow: 0 0 0 3px rgba(129,94,255,0.12);
  background: #fff;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-rosa);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast),
              box-shadow var(--trans-fast);
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(242,89,193,0.30);
}

.btn-submit:hover {
  background: var(--brand-roxo);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(199,141,255,0.45);
}


/* =============================================
   INNER PAGE — responsive
   ============================================= */

@media (max-width: 900px) {
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .obj-cards  { grid-template-columns: 1fr 1fr; }
  .inner-inner { padding: 0 20px; }
  .inner-section { padding: 52px 0; }
}

@media (max-width: 640px) {
  .obj-cards { grid-template-columns: 1fr; }

  .inner-banner {
    height: 180px;
    margin-top: var(--header-height);
  }

  .inner-banner__title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}


/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 16px 16px;
  pointer-events: none;
}

.cookie-banner__frame {
  background: linear-gradient(135deg, var(--brand-roxo) 0%, #7c3aed 100%);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 40px rgba(199,141,255,0.30);
  pointer-events: all;
  backdrop-filter: blur(8px);
}

.cookie-banner__text {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__controls { display: flex; gap: 10px; }

.control-button {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.55);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--trans-fast), border-color var(--trans-fast),
              transform var(--trans-fast);
  min-height: 44px;
}

.control-button:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.control-button.primary {
  background: var(--brand-amarelo);
  border-color: var(--brand-amarelo);
  color: #fff;
}

.control-button.primary:hover {
  background: var(--brand-laranja);
  border-color: var(--brand-laranja);
}


/* =============================================
   INNER WAVE DECORATION
   ============================================= */

.inner-wave {
  position: relative;
  height: 56px;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  pointer-events: none;
}

.inner-wave svg { display: block; width: 100%; height: 100%; }


/* =============================================
   SOBRE PAGE — v2 Redesign
   ============================================= */

/* ── Hero ── */
.sobre-hero {
  position: relative;
  width: 100%;
  height: 440px;
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.sobre-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(199,141,255,0.86) 0%,
    rgba(83,114,255,0.82) 50%,
    rgba(3,103,165,0.78) 100%);
}
.sobre-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}
.sobre-hero__wave svg { display: block; width: 100%; height: 100%; }

/* ── Verão Featured Card (home) ─────────── */
.verao-featured {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe4f0 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 2.5px solid #ffd93d;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255,107,157,0.12);
}
.verao-featured:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,107,157,0.22); }
.verao-featured__img-wrap { flex: 0 0 220px; background: #fff8e1; }
.verao-featured__img { width: 100%; height: auto; display: block; object-fit: cover; }
.verao-featured__body { flex: 1; padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; }
.verao-featured__title { font-size: clamp(22px, 3vw, 30px); color: #ff6b9d; margin: 0 0 6px; line-height: 1.2; }
.verao-featured__sub { font-size: 14px; color: #666; margin: 0; font-family: 'Raleway', sans-serif; }
.verao-featured__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.verao-featured__tags span { background: #fff; border-radius: 20px; padding: 4px 12px; font-size: 13px; color: #444; font-family: 'Raleway', sans-serif; border: 1px solid #f0d0e0; }
@media (max-width: 640px) {
  .verao-featured { flex-direction: column; }
  .verao-featured__img-wrap { flex: 0 0 180px; max-height: 180px; }
  .verao-featured__body { padding: 16px 18px; }
}
@media (max-width: 900px) {
  .verao-featured__img-wrap { flex: 0 0 200px; }
}

/* ── Verão Gallery Trigger ──────────────── */
.verao-gallery-trigger {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  display: block;
  outline: none;
}
.verao-gallery-trigger:focus-visible { box-shadow: 0 0 0 3px #ff6b9d; }
.verao-gallery-trigger img { width: 100%; display: block; }
.verao-gallery-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60) 0%, transparent 100%);
  padding: 50px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.verao-gallery-hint span {
  background: rgba(255,255,255,0.95);
  color: #ff6b9d;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.verao-gallery-trigger:hover .verao-gallery-hint span,
.verao-gallery-trigger:focus-visible .verao-gallery-hint span {
  background: #ff6b9d;
  color: #fff;
  transform: scale(1.04);
}

/* ── Verão Lightbox Modal ───────────────── */
.verao-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.90);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.verao-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.verao-modal__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(440px, 92vw);
}
.verao-modal__close {
  position: absolute;
  top: -14px; right: -14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  z-index: 2;
  transition: background 0.15s;
}
.verao-modal__close:hover { background: #ff6b9d; color: #fff; }
.verao-modal__img-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.verao-modal__img {
  max-width: min(380px, 78vw);
  max-height: 78vh;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.verao-modal__prev,
.verao-modal__next {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.verao-modal__prev:hover,
.verao-modal__next:hover { background: rgba(255,255,255,0.28); }
.verao-modal__dots { display: flex; gap: 8px; }
.verao-modal__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.verao-modal__dot.active { background: #fff; transform: scale(1.3); }

/* ── Hero bottom decorative elements ───── */
.hero-decos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.hd {
  position: absolute;
  line-height: 1;
  display: block;
  opacity: 0.92;
  animation: hdFloat 3.8s ease-in-out infinite;
}
@keyframes hdFloat {
  0%,100% { transform: translateY(0)    rotate(var(--r,0deg)); }
  50%     { transform: translateY(-7px) rotate(var(--r,0deg)); }
}

/* Floating sparkle decorations */
.sobre-float {
  position: absolute;
  left: var(--sf-x);
  top: var(--sf-y);
  color: var(--sf-c, #fff);
  font-size: 22px;
  z-index: 3;
  animation:
    ps-float var(--sf-dur, 3.5s) var(--sf-delay, 0s) ease-in-out infinite,
    ps-twinkle 2.8s var(--sf-delay, 0s) ease-in-out infinite;
  opacity: 0.9;
  pointer-events: none;
}

.sobre-hero__body {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 44px;
}
.sobre-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.sobre-hero__title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 4px 28px rgba(0,0,0,0.20);
  line-height: 1;
}
.sobre-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  letter-spacing: 1.5px;
}

/* ── Quem Somos — image frame ── */
.sq-wrap {
  position: relative;
  padding: 24px 0 16px 24px;
}
.sq-blob {
  position: absolute;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, #e8d5ff 0%, #faf5ff 100%);
  border-radius: 62% 38% 68% 32% / 42% 58% 42% 58%;
  bottom: 0;
  left: 0;
  z-index: 0;
  animation: ps-float-slow 8s ease-in-out infinite;
}
.sq-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.sq-tagline {
  font-size: 19px;
  color: var(--blue-primary);
  margin-bottom: 20px;
  margin-top: 8px;
}

/* ── Equipa mosaic ── */
/* ── Equipa swiper (card stack) ── */
.eq-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eq-text-wrap {
  max-width: 720px;
}
.eq-swiper-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.eq-swiper {
  position: relative;
  width: 292px;
  height: 424px;
  touch-action: none;
  cursor: grab;
  transform-style: preserve-3d;
}
.eq-swiper:active { cursor: grabbing; }

.eq-swiper__card {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 260px;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  will-change: transform;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform:
    perspective(700px)
    translateZ(calc(-12px * var(--i, 1)))
    translateY(calc(8px  * var(--i, 1)))
    translateX(var(--swipe-x, 0px))
    rotateY(var(--swipe-rotate, 0deg));
}
.eq-swiper__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}
.eq-swiper__hint {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.30);
  text-align: center;
}

/* ── Missão e Valores section ── */
.sobre-missao {
  background: linear-gradient(140deg, #b87fff 0%, #7c3aed 55%, #5372FF 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}
.mv-intro--solo {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.mv-intro--solo .section-body {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.mv-intro {
  margin-bottom: 56px;
}

/* ── PODESER acrostic cards ── */
.podeser-section {
  margin-top: 8px;
}
.podeser-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 28px;
}
.podeser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.podeser-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-top: 4px solid var(--pc, #FF94D6);
  border-radius: 18px;
  padding: 22px 14px 18px;
  text-align: center;
  flex: 0 0 calc(14.28% - 12px);
  min-width: 118px;
  max-width: 160px;
  transition: transform var(--trans-base), background var(--trans-base);
}
.podeser-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.18);
}
.podeser-letter {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--pc, #FF94D6);
  line-height: 1;
  margin-bottom: 10px;
}
.podeser-text {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

/* ── Objetivos e Metodologia section ── */
.sobre-metodo {
  background: #1a1040;
}
.sobre-metodo__heading {
  font-size: clamp(30px, 4vw, 46px);
  text-align: center;
  margin-bottom: 56px;
}
.sobre-metodo__sublabel {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}

/* Methodology cards */
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metodo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 4px solid var(--mc, #FF94D6);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--trans-base), transform var(--trans-base);
}
.metodo-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.metodo-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--mc, #FF94D6);
  display: flex;
  align-items: flex-start;
}
.metodo-card__icon svg {
  width: 100%;
  height: 100%;
  color: inherit;
}
.metodo-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.metodo-card__text {
  font-family: 'Raleway', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}

/* ── Sobre responsive ── */
@media (max-width: 1024px) {
  .podeser-card { flex: 0 0 calc(25% - 12px); }
}
@media (max-width: 768px) {
  .sobre-hero   { height: 340px; }
  .podeser-card { flex: 0 0 calc(33.33% - 12px); min-width: 100px; }
  .metodo-grid  { grid-template-columns: 1fr 1fr; }
  .sq-wrap      { padding: 12px 0 12px 12px; }
}
@media (max-width: 480px) {
  .sobre-hero   { height: 280px; }
  .podeser-card { flex: 0 0 calc(50% - 12px); }
  .metodo-grid  { grid-template-columns: 1fr; }
}


/* =============================================
   MOBILE — COMPREHENSIVE POLISH  v3
   ============================================= */

/* ── 768 px — tablet / large phone ─────────── */
@media (max-width: 768px) {
  /* Nav logo */
  .logo-img { height: 64px; width: 64px; }

  /* Hero title + subtitle scale gracefully */
  .sobre-hero__title {
    font-size: clamp(32px, 9vw, 56px);
    letter-spacing: 2px;
  }
  .sobre-hero__sub {
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 0 20px;
  }

  /* Service category sections */
  .svc-cat-section { padding: 48px 0 56px; }
  .svc-cat__heading { font-size: 26px; }

  /* Home page section vertical rhythm */
  .about-section        { padding: 64px 0 48px; }
  .services-section     { padding: 64px 0 48px; }
  .method-section       { padding: 64px 0; }
  .testimonials-section { padding: 52px 0 64px; }
  .events-section       { padding: 52px 0 64px; }
  .benefits-section     { padding: 64px 0; }
  .newsletter-section   { padding: 52px 0 72px; }

  /* Podeser acrostic + stats */
  .podeser-letter { font-size: 38px; }
  .stat-number    { font-size: 40px; }
}


/* ── 480 px — mobile ────────────────────────── */
@media (max-width: 480px) {
  /* Shrink header height so there's more content space */
  :root { --header-height: 64px; }

  /* Logos */
  .logo-img    { height: 56px; width: 56px; }
  .footer-logo { height: 74px; width: 74px; }

  /* ── Sobre-hero (shared by all inner page heroes) ── */
  .sobre-hero       { height: 240px; }
  .sobre-hero__title {
    font-size: clamp(22px, 7.5vw, 36px);
    letter-spacing: 0.5px;
  }
  .sobre-hero__sub {
    font-size: 13px;
    letter-spacing: 0;
    padding: 0 16px;
    text-align: center;
  }
  .sobre-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .sobre-hero__body { padding: 0 16px 28px; }
  .sobre-hero__wave { height: 36px; }

  /* ── Home hero ── */
  .hero-subtitle { font-size: clamp(17px, 4.5vw, 26px); }

  /* ── Home page sections ── */
  .about-section        { padding: 48px 0 36px; }
  .services-section     { padding: 48px 0 36px; }
  .method-section       { padding: 48px 0; }
  .testimonials-section { padding: 40px 0 48px; }
  .events-section       { padding: 40px 0 48px; }
  .benefits-section     { padding: 48px 0; }
  .newsletter-section   { padding: 48px 0 56px; }

  /* ── Inner pages ── */
  .inner-section { padding: 36px 0; }
  .inner-inner   { padding: 0 16px; }

  /* Service category section */
  .svc-cat-section { padding: 36px 0 44px; }
  .svc-cat__heading { font-size: 22px; }
  .svc-cat__badge {
    width: 44px; height: 44px;
    border-radius: 12px;
  }
  .svc-cat__badge svg { width: 20px; height: 20px; }
  .svc-cat__head {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  /* Service detail cards */
  .svc-cards { grid-template-columns: 1fr; gap: 16px; }
  .svc-card  { padding: 24px 20px 20px; }

  /* Stats */
  .stat-number { font-size: 34px; }
  .stat-item   { min-width: 0; flex: 1 1 calc(50% - 12px); padding: 14px; }
  .stats-grid  { gap: 12px; }

  /* Mini stats (testimonials section) */
  .mini-stats        { gap: 20px; flex-wrap: wrap; }
  .mini-stat__number { font-size: 36px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Podeser acrostic */
  .podeser-letter { font-size: 30px; }
  .podeser-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
    padding: 16px 10px 14px;
  }
  .podeser-text { font-size: 11px; }

  /* Equipa card swiper — fits narrow screen */
  .eq-swiper       { width: 240px; height: 360px; }
  .eq-swiper__card { width: 208px; height: 296px; }

  /* Footer nav — stack vertically, hide pipes */
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-sep  { display: none; }
  .footer-inner { gap: 24px; }

  /* Emp tagline (Empresas page) */
  .emp-tagline { font-size: 16px; }

  /* Buttons */
  .btn-saiba-mais { padding: 13px 28px; }

  /* Cookie banner stacks on narrow screens */
  .cookie-banner__frame {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner__controls { justify-content: space-between; }
  .cookie-banner__controls .control-button {
    flex: 1;
    padding: 9px 12px;
    font-size: 13px;
  }
}


/* ── 360 px — very small phones ─────────────── */
@media (max-width: 360px) {
  .sobre-hero       { height: 210px; }
  .sobre-hero__title {
    font-size: clamp(18px, 6vw, 28px);
    letter-spacing: 0;
  }
  .hero-title { font-size: clamp(24px, 7vw, 36px); }

  .svc-card    { padding: 20px 14px; }
  .inner-inner { padding: 0 12px; }

  .podeser-card { flex: 0 0 calc(50% - 6px); }
  .stat-item    { padding: 12px; }

  /* Swiper shrinks a touch more */
  .eq-swiper       { width: 216px; height: 340px; }
  .eq-swiper__card { width: 184px; height: 276px; }
}


/* =============================================
   EVENTOS PAGE
   ============================================= */

.eventos-day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(152,193,86,0.25);
}

.eventos-day-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--purple-primary);
  line-height: 1;
  min-width: 64px;
  text-align: center;
}

.eventos-day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 2px;
}

.eventos-day-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
}

.eventos-day-status {
  margin-left: auto;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.eventos-day-status.past {
  background: #f0f0f0;
  color: #999;
}
.eventos-day-status.upcoming {
  background: var(--green-primary);
  color: #fff;
}

.events-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .events-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .eventos-day-num { font-size: 44px; min-width: 50px; }
}
@media (max-width: 480px) {
  .events-grid--3 { grid-template-columns: 1fr; }
  .eventos-day-header { gap: 14px; }
  .eventos-day-num { font-size: 36px; min-width: 42px; }
  .eventos-day-title { font-size: 20px; }
}


/* =============================================
   EVENT MODAL
   ============================================= */

.ev-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 50, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ev-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ev-modal__box {
  background: #fff;
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.ev-modal-overlay.open .ev-modal__box {
  transform: translateY(0) scale(1);
}

.ev-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, background 0.15s ease;
}
.ev-modal__close:hover {
  transform: scale(1.1);
  background: #fff;
}

.ev-modal__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.ev-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-modal__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(20,10,50,0.5), transparent);
  pointer-events: none;
}
.ev-modal__badge-over {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  z-index: 4;
  letter-spacing: 0.5px;
}

.ev-modal__body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-modal__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
  margin: 0;
}

.ev-modal__sub {
  font-size: 14px;
  color: #888;
  margin: -4px 0 2px;
}

.ev-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.ev-modal__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.ev-modal__footer {
  margin-top: 8px;
}

.ev-modal__cta {
  display: inline-block;
}

/* Clickable card cursor */
.event-card[data-event-id] {
  cursor: pointer;
}
.event-card[data-event-id]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(152,193,86,0.25);
}

@media (max-width: 480px) {
  .ev-modal__body { padding: 20px 20px 28px; }
  .ev-modal__box  { border-radius: 18px; }
}

/* ── Verão section — mobile grid stack ── */
@media (max-width: 640px) {
  .verao-grid-2 { grid-template-columns: 1fr !important; }
}
