/* ============================================================
   HOLANA ART — MAIN STYLESHEET
   Estilos principais do site
   ============================================================ */

/* Google Fonts — carregadas via <link> no HTML para melhor performance */

/* ─── Reset & Base ───────────────────────────────────────────── */

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: url('../images/icons/cursor-pink.svg') 4 2, auto;
}

/* Pointer rosa pastel escuro */
a, button, input, textarea, select, label, [role="button"],
.service-card, .diferencial-card, .faq__question {
  cursor: url('../images/icons/cursor-pink.svg') 4 2, pointer;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: var(--rose-tea);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--rose-light);
  border-radius: var(--radius-full);
}

/* ─── Tipografia Global ──────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h4, h5, h6 {
  font-family: var(--font-subtitle);
  font-weight: 400;
  line-height: 1.3;
}

.label-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-elegant);
}

.subtitle-text {
  font-family: var(--font-subtitle);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── Layout Container ───────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-8);
  position: relative;
  z-index: 2;
}


/* ─── Section Layout ─────────────────────────────────────────── */

section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header .label-text {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
}

.section-header p {
  font-size: var(--text-md);
  color: var(--text-light);
  line-height: 1.8;
}


/* ─── Botões ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

/* Botão primário */
.btn--primary {
  background: var(--gradient-button);
  color: var(--text);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 108, 0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Botão secundário (outline) */
.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--beige);
}

.btn--secondary:hover {
  border-color: var(--rose-light);
  background: rgba(242, 213, 220, 0.08);
  transform: translateY(-2px);
}


/* Botão grande */
.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-5) var(--space-12);
}

/* Botão com ícone */
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ─── Placeholder de imagem ──────────────────────────────────── */

.img-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--rose-tea), var(--lavender));
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: rgba(47, 47, 47, 0.4);
  text-align: center;
  padding: var(--space-4);
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  inset: 0;
}

.img-placeholder img.loaded {
  opacity: 1;
}

/* ─── Header ─────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-modal) + 1);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-slow),
              height var(--transition-base),
              box-shadow var(--transition-slow),
              backdrop-filter var(--transition-slow);
}

.header.scrolled {
  height: var(--header-height-scroll);
  background: rgba(245, 241, 226, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(44, 32, 24, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  width: 100%;
  position: relative;
}


/* Navegação principal — centralizada */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin: 0 auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-light);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}



/* Menu hambúrguer — canto direito no mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-2);
  z-index: calc(var(--z-modal) + 2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Backdrop do menu mobile */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) - 1);
  background: rgba(44, 32, 24, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth), visibility 0.3s var(--ease-smooth);
}

.mobile-menu__overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Painel do menu mobile — compacto */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  width: min(72vw, 260px);
  max-height: min(78vh, 520px);
  background: var(--off-white);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--space-5);
  padding: calc(var(--header-height) + var(--space-4)) var(--space-6) var(--space-6);
  margin-top: 0;
  border-radius: 0 0 0 18px;
  opacity: 1;
  visibility: visible;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease-smooth);
  box-shadow: -8px 12px 32px rgba(44, 32, 24, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  width: 100%;
}

.mobile-menu__link {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--rose-light);
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}



.hero__inner {
  position: relative;
  z-index: var(--z-above);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}


.hero__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--mauve);
}

.hero__subtitle {
  font-family: var(--font-subtitle);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  max-width: 420px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}


/* ─── SOBRE HOLANA ───────────────────────────────────────────── */

.about {
  padding: var(--space-32) 0;
  background: var(--gradient-section);
}


.about__text p {
  font-size: var(--text-md);
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__text strong {
  color: var(--text);
  font-weight: 500;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  justify-items: stretch;
}

.about__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-3);
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 222, 209, 0.6);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  text-align: center;
}

.about__card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--rose-light);
  transform: translateY(-3px);
}

.about__card-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}

.about__card-check svg {
  width: 14px;
  height: 14px;
}

.about__card-text {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

/* ─── DIFERENCIAIS ───────────────────────────────────────────── */

.diferenciais {
  padding: var(--space-32) 0;
  background: var(--white);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}


.diferencial-card {
  padding: var(--space-10) var(--space-8);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(232, 222, 209, 0.5);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-button);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--rose-light);
}

.diferencial-card:hover::before {
  opacity: 0.04;
}

.diferencial-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-card);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--mauve);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.diferencial-card__icon svg {
  width: 26px;
  height: 26px;
}

.diferencial-card:hover .diferencial-card__icon {
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
  color: var(--text);
  background: var(--gradient-button);
  border-color: transparent;
}

.diferencial-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  position: relative;
}

.diferencial-card p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
}

/* ─── PRÉVIA DOS SERVIÇOS ────────────────────────────────────── */

.services-preview {
  padding: var(--space-32) 0;
  background: var(--gradient-section);
}

.services-preview > .container {
  max-width: min(1360px, 94vw);
  width: 100%;
  padding-inline: clamp(var(--space-4), 2vw, var(--space-6));
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(var(--space-5), 1.5vw, var(--space-6));
  margin-bottom: var(--space-12);
  width: 100%;
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 222, 209, 0.4);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}

.services-preview .service-card__image {
  aspect-ratio: 4 / 3;
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-card__image .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-card__image .img-placeholder {
  transform: scale(1.05);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: clamp(var(--space-6), 1.8vw, var(--space-10));
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.services-preview .service-card__body {
  padding: clamp(var(--space-5), 1.4vw, var(--space-8));
  gap: var(--space-3);
}

.service-card__tag {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 500;
  line-height: 1.3;
}

.service-card h3 {
  font-size: clamp(1.375rem, 1.2rem + 0.45vw, 1.75rem);
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.services-preview .service-card h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.4vw, 1.65rem);
}

.service-card p {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
}

.services-preview .service-card p {
  font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  margin-top: var(--space-2);
  transition: gap var(--transition-fast);
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link {
  gap: var(--space-3);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}


.services-preview__cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.services-preview__cta .btn {
  margin-left: 0 !important;
}

/* ─── COMO FUNCIONA — TIMELINE ───────────────────────────────── */

.how-it-works {
  position: relative;
  padding: var(--space-32) 0;
  background: var(--white);
  overflow: hidden;
}

.how-it-works > .container {
  position: relative;
  z-index: 2;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--beige) 10%, var(--beige) 90%, transparent);
  transform: translateX(-50%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-12);
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.timeline__item:nth-child(even) .timeline__step {
  grid-column: 2;
  grid-row: 1;
}

.timeline__item:nth-child(odd) .timeline__content {
  grid-column: 1;
  text-align: right;
}

.timeline__item:nth-child(odd) .timeline__step {
  grid-column: 2;
}

.timeline__item:nth-child(odd) .timeline__spacer {
  grid-column: 3;
}

.timeline__item:nth-child(even) .timeline__spacer {
  grid-column: 1;
  grid-row: 1;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: var(--z-above);
}

.timeline__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  box-shadow: var(--shadow-rose);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline__item:hover .timeline__step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(212, 168, 108, 0.40);
}

.timeline__content {
  padding: var(--space-6) var(--space-8);
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 222, 209, 0.5);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.timeline__item:hover .timeline__content {
  box-shadow: var(--shadow-card);
  border-color: var(--rose-light);
}

.timeline__content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.timeline__content p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.65;
}

.timeline__spacer {
  /* espaçador de grid */
}

/* ─── DEPOIMENTOS ────────────────────────────────────────────── */

.testimonials {
  padding: var(--space-32) 0;
  background: var(--gradient-section);
  overflow: hidden;
}

.testimonials > .container {
  max-width: min(1520px, 92vw);
  width: 100%;
  padding-inline: clamp(var(--space-4), 2vw, var(--space-6));
}

.testimonials-swiper {
  width: 100%;
  padding-bottom: var(--space-12);
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--beige-dark, #d4c4b0);
  opacity: 0.55;
  transition: transform var(--transition-base), background var(--transition-base), opacity var(--transition-base);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--rose-tea);
  opacity: 1;
  transform: scale(1.25);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  max-height: 380px;
  height: 100%;
  width: 100%;
  padding: clamp(var(--space-4), 1.3vw, var(--space-6));
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 222, 209, 0.4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-2);
  right: var(--space-3);
  font-family: var(--font-title);
  font-size: clamp(32px, 3.2vw, 48px);
  color: var(--rose-tea);
  line-height: 1;
  opacity: 0.4;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--rose-light);
}

@media (hover: none) {
  .testimonial-card:hover {
    transform: none;
  }
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-2);
  color: var(--floral-yellow);
  flex-shrink: 0;
}

.testimonial-card__stars .icon {
  width: 11px;
  height: 11px;
  color: var(--floral-yellow);
}

.testimonial-card__text {
  font-family: var(--font-subtitle);
  font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

.testimonial-card__photo {
  margin: 0 auto var(--space-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 140px;
}

.testimonial-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--beige);
  padding-top: var(--space-3);
  margin-top: auto;
  flex-shrink: 0;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-size: var(--text-xs);
  color: var(--text);
  background: var(--gradient-rose);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__info h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.testimonial-card__info span {
  font-size: var(--text-xs);
  color: var(--gray-elegant);
}

/* ─── FAQ ────────────────────────────────────────────────────── */

.faq {
  padding: var(--space-32) 0;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__group {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: var(--space-6) 0 var(--space-2);
}

.faq__group:first-child {
  margin-top: 0;
}

.faq__item {
  background: var(--gradient-card);
  border: 1px solid rgba(232, 222, 209, 0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq__item.open {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-card);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--text);
}

.faq__question-text {
  flex: 1;
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.faq__item.open .faq__icon {
  background: var(--gradient-button);
}

.faq__item.open .faq__icon svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}

.faq__answer-inner {
  padding: 0 var(--space-8) var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── CONTATO ────────────────────────────────────────────────── */

.contact {
  padding: clamp(5.5rem, 8vw, 8rem) 0 var(--space-32);
  background:
    radial-gradient(ellipse 90% 42% at 50% -8%, rgba(232, 196, 188, 0.35) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(216, 200, 156, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(224, 180, 180, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #FBF8F2 0%, #F5EFE4 48%, #F8F4EC 100%);
}


/* Formulário */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 222, 209, 0.4);
}

.form-header {
  margin-bottom: var(--space-8);
}

.form-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.form-header p {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-elegant);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-md);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text);
  outline: none;
  transition: all var(--transition-base);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 152, 152, 0.20);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}

/* Detecta autofill do Chrome pra reformatar telefone (+55 → DDD certo) */
@keyframes onAutoFillStart {
  from { opacity: 1; }
  to { opacity: 1; }
}

.form-group input:-webkit-autofill {
  animation-name: onAutoFillStart;
  animation-duration: 0.001s;
}

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

.contact__mensagem {
  min-height: 120px;
}

/* Checkbox LGPD */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  appearance: none;
  -webkit-appearance: none;
  cursor: url('../images/icons/cursor-pink.svg') 4 2, pointer;
  transition: all var(--transition-fast);
  position: relative;
  margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--gradient-button);
  border-color: var(--rose-light);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text);
}

.form-checkbox label {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.form-checkbox label a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__submit-wrap {
  display: flex;
  justify-content: center;
}

.form__submit-wrap .btn {
  width: 100%;
}

/* Info lateral do contato */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-4);
}

.contact__quote {
  background: var(--gradient-card);
  border: 1px solid var(--beige);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.contact__quote-mark {
  position: absolute;
  top: var(--space-3);
  right: var(--space-5);
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--rose-tea);
  line-height: 1;
  opacity: 0.4;
}

.contact__quote-text {
  font-family: var(--font-subtitle);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  margin: 0;
}

.contact__quote-author {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact__quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.contact__quote-author strong {
  font-size: var(--text-sm);
  display: block;
}

.contact__quote-author span {
  font-size: var(--text-xs);
  color: var(--gray-elegant);
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-rose);
}

.contact__item-icon svg {
  width: 18px;
  height: 18px;
}

.contact__item-text {
  padding-top: var(--space-2);
  min-width: 0;
}

.contact__item-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-elegant);
  display: block;
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact__item-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-elegant);
  margin-top: 2px;
  line-height: 1.4;
}

.contact__social {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact__social-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--gradient-card);
  border: 1px solid var(--beige);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text);
  transition: all var(--transition-base);
}

.contact__social-btn:hover {
  background: var(--gradient-button);
  border-color: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.contact__social-btn svg {
  width: 16px;
  height: 16px;
}

/* Mapa Google ao vivo */
.contact__map {
  height: 240px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.footer {
  background: var(--gradient-footer);
  border-top: 1px solid var(--beige);
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}


.footer__tagline {
  font-family: var(--font-subtitle);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.footer__social-link:hover {
  background: var(--gradient-button);
  border-color: var(--rose-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  color: var(--text);
}

.footer__col h5,
.footer__col .footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--text-light);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__link:hover {
  color: var(--text);
  padding-left: var(--space-2);
}

.footer__bottom {
  border-top: 1px solid var(--beige);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--gray-elegant);
  margin: 0;
}

.footer__copyright a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer__copyright a:hover {
  color: var(--text);
}

.footer__dev-link {
  color: var(--salmon);
  font-weight: 500;
}

.footer__dev-link:hover {
  color: var(--terracotta);
}


/* ─── LIGHTBOX ───────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  padding: var(--space-8);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img-wrap {
  width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 75vh;
}

.lightbox__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--text-sm);
}

.lightbox__close {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url('../images/icons/cursor-pink.svg') 4 2, pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.lightbox__close:hover {
  background: var(--rose-tea);
  border-color: var(--rose-light);
}

.lightbox__close svg {
  width: 18px;
  height: 18px;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url('../images/icons/cursor-pink.svg') 4 2, pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-modal);
}

.lightbox__nav:hover {
  background: var(--gradient-button);
  border-color: var(--rose-light);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__nav--prev { left: var(--space-6); }
.lightbox__nav--next { right: var(--space-6); }

.lightbox__nav svg {
  width: 18px;
  height: 18px;
}

/* ─── SERVICOS2 — EXPERIÊNCIAS ───────────────────────────────── */

.experience-section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.experience-section:nth-child(even) {
  background: var(--gradient-section);
}

.experience-section:nth-child(odd) {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.experience-grid--reverse {
  direction: rtl;
}

.experience-grid--reverse > * {
  direction: ltr;
}

.experience__image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  background: transparent;
}

.experience__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.experience__image .img-placeholder {
  width: 100%;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F8E8EE, #EEE8F8, #E8F0E8);
}

.experience__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.experience__content h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}




/* ─── Categoria header (servicos1.html) ──────────────────────── */

.category-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ─── Galeria amostra + expandir ─────────────────────────────── */

.gallery-expand {
  margin-top: var(--space-2);
}

.gallery-expand__grid {
  align-items: stretch;
}

/* Célula fixa, foto preenche — sem faixas laterais */
.gallery-expand .service-card {
  height: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
}

.gallery-expand .service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.gallery-expand .lightbox-trigger,
.experience__image.lightbox-trigger {
  cursor: zoom-in;
}

.gallery-expand .service-card__image {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: transparent;
}

.gallery-expand .service-card__image img {
  width: 100% !important;
  height: 100% !important;
  max-height: none;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

.gallery-expand .service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.gallery-expand__item.is-hidden,
.gallery-expand__item[hidden] {
  display: none !important;
}

.gallery-expand__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-16);
  margin-bottom: var(--space-2);
  padding-top: var(--space-10);
}

.gallery-expand__btn,
.gallery-expand__btn-less {
  min-width: 220px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.gallery-expand__btn[hidden],
.gallery-expand__btn-less[hidden] {
  display: none !important;
}

.gallery-expand__n {
  opacity: 0.75;
  font-weight: 400;
}

.gallery-expand__count {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.experience-section .gallery-expand {
  margin-top: var(--space-12);
}

.experience-section .gallery-expand__actions {
  margin-top: var(--space-16);
}


.category-section {
  padding: var(--space-20) 0;
}

.category-section + .category-section {
  border-top: 1px solid var(--beige);
}

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.category-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-top: var(--space-2);
}

.category-header p {
  font-size: var(--text-sm);
  color: var(--text-light);
  max-width: 360px;
  text-align: right;
}

/* ─── Serviços hero ──────────────────────────────────────────── */

.services-hero {
  padding: calc(var(--header-height) + var(--space-24)) 0 var(--space-24);
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Pinturas / Eventos / Inscrições — fundo salmão + aquarela ponta a ponta */
.services-hero--pinturas,
.services-hero--eventos,
.services-hero--inscricoes {
  background:
    radial-gradient(ellipse 65% 55% at 72% 42%, rgba(245, 232, 220, 0.55) 0%, transparent 68%),
    var(--gradient-hero);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.botanical-bg--pinturas-hero,
.botanical-bg--eventos-hero,
.botanical-bg--inscricoes-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.botanical-bg--pinturas-hero img,
.botanical-bg--eventos-hero img,
.botanical-bg--inscricoes-hero img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  min-width: min(100%, 1100px);
  object-fit: cover;
  object-position: left center;
  opacity: 0.9;
  animation: watercolor-breathe 14s ease-in-out infinite;
  will-change: filter;
}

.services-hero--pinturas > .container,
.services-hero--eventos > .container,
.services-hero--inscricoes > .container {
  position: relative;
  z-index: 2;
}

/* Ultrawide — arte colada no início da esquerda */
@media (min-width: 1440px) {
  .botanical-bg--pinturas-hero,
  .botanical-bg--eventos-hero,
  .botanical-bg--inscricoes-hero {
    right: auto;
    width: min(42vw, 980px);
  }

  .botanical-bg--pinturas-hero img,
  .botanical-bg--eventos-hero img,
  .botanical-bg--inscricoes-hero img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: 0% center;
    opacity: 0.82;
  }
}

@media (min-width: 1800px) {
  .botanical-bg--pinturas-hero,
  .botanical-bg--eventos-hero,
  .botanical-bg--inscricoes-hero {
    width: min(36vw, 920px);
  }
}

@media (max-width: 768px) {
  .botanical-bg--pinturas-hero,
  .botanical-bg--eventos-hero,
  .botanical-bg--inscricoes-hero {
    inset: 0;
    width: 100%;
    right: 0;
  }

  .botanical-bg--pinturas-hero img,
  .botanical-bg--eventos-hero img,
  .botanical-bg--inscricoes-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.55;
  }

  .services-hero--pinturas,
  .services-hero--eventos,
  .services-hero--inscricoes {
    background:
      radial-gradient(ellipse 90% 70% at 50% 40%, rgba(245, 232, 220, 0.7) 0%, transparent 72%),
      var(--gradient-hero);
  }
}

@media (prefers-reduced-motion: reduce) {
  .botanical-bg--pinturas-hero img,
  .botanical-bg--eventos-hero img,
  .botanical-bg--inscricoes-hero img {
    animation: none;
  }
}

.hero__badges {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  justify-content: center;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-light);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-button);
  flex-shrink: 0;
}

/* ─── Back to top ────────────────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: calc(var(--space-8) + 64px);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: url('../images/icons/cursor-pink.svg') 4 2, pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gradient-button);
  border-color: var(--rose-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ─── WhatsApp flutuante (abaixo do back-to-top) ─────────────── */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A8D5A2 0%, #7CB87A 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 184, 122, 0.45);
  z-index: var(--z-sticky);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(124, 184, 122, 0.55);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(168, 213, 162, 0.5);
  animation: whatsappPulse 2.4s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ─── Ícones SVG sofisticados ────────────────────────────────── */

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── Folhas pintadas à mão ──────────────────────────────────── */

.painted-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  opacity: 0.72;
  transition: opacity var(--transition-slow);
}

.painted-leaf img,
.painted-leaf svg {
  width: 100%;
  height: auto;
  display: block;
}

.painted-leaf--hero-tl {
  top: 10%;
  left: 2%;
  width: 110px;
  transform: rotate(-18deg);
  opacity: 0.55;
}

.painted-leaf--hero-br {
  bottom: 6%;
  right: 3%;
  width: 130px;
  transform: rotate(12deg) scaleX(-1);
  opacity: 0.5;
}

.painted-leaf--hero-bl {
  bottom: 8%;
  left: 4%;
  width: 90px;
  transform: rotate(-8deg);
  opacity: 0.4;
}

.painted-leaf--hero-tr {
  top: 12%;
  right: 4%;
  width: 55px;
  transform: rotate(15deg);
  opacity: 0.42;
}

/* Longe do título (coluna esquerda) e logo */
.painted-leaf--hero-edge {
  bottom: 18%;
  right: 8%;
  width: 48px;
  transform: rotate(28deg);
  opacity: 0.35;
}

.painted-leaf--hero-gap {
  top: auto;
  bottom: 2%;
  left: 8%;
  width: 72px;
  transform: rotate(-24deg) scaleX(-1);
  opacity: 0.38;
}

.painted-leaf--about {
  top: 8%;
  right: 4%;
  width: 120px;
  transform: rotate(25deg);
  opacity: 0.5;
}

.painted-leaf--about-bl {
  bottom: 6%;
  left: 3%;
  width: 95px;
  transform: rotate(-22deg);
  opacity: 0.42;
}

.painted-leaf--about-tr {
  top: 4%;
  left: 6%;
  width: 70px;
  transform: rotate(40deg) scaleX(-1);
  opacity: 0.38;
}

.painted-leaf--about-c {
  top: 72%;
  left: 2%;
  width: 42px;
  transform: rotate(-35deg);
  opacity: 0.32;
}

.painted-leaf--about-cm {
  bottom: 2%;
  right: 10%;
  width: 140px;
  transform: rotate(18deg);
  opacity: 0.26;
}

.painted-leaf--diff-bl {
  bottom: 4%;
  left: 3%;
  width: 70px;
  transform: rotate(-20deg);
  opacity: 0.4;
}

.painted-leaf--diff-tr {
  top: 4%;
  right: 3%;
  width: 95px;
  transform: rotate(18deg) scaleX(-1);
  opacity: 0.42;
}

.painted-leaf--diff-c {
  bottom: 2%;
  left: 18%;
  width: 150px;
  transform: rotate(-12deg);
  opacity: 0.24;
}

.painted-leaf--diff-sm {
  top: 8%;
  left: 2%;
  width: 40px;
  transform: rotate(42deg) scaleX(-1);
  opacity: 0.36;
}

.painted-leaf--services-tl {
  top: 4%;
  left: 3%;
  width: 100px;
  transform: rotate(-15deg);
  opacity: 0.4;
}

.painted-leaf--services-br {
  bottom: 4%;
  right: 3%;
  width: 80px;
  transform: rotate(25deg) scaleX(-1);
  opacity: 0.38;
}

.painted-leaf--services-c {
  top: 78%;
  left: 2%;
  width: 48px;
  transform: rotate(-40deg);
  opacity: 0.34;
}

.painted-leaf--services-cm {
  top: 2%;
  right: 12%;
  width: 135px;
  transform: rotate(22deg);
  opacity: 0.26;
}

.painted-leaf--how-tr {
  top: 4%;
  right: 3%;
  width: 85px;
  transform: rotate(20deg);
  opacity: 0.4;
}

.painted-leaf--how-bl {
  bottom: 4%;
  left: 3%;
  width: 75px;
  transform: rotate(-28deg) scaleX(-1);
  opacity: 0.38;
}

.painted-leaf--how-c {
  bottom: 8%;
  right: 2%;
  width: 44px;
  transform: rotate(30deg);
  opacity: 0.33;
}

.painted-leaf--how-cm {
  bottom: 2%;
  left: 14%;
  width: 155px;
  transform: rotate(-18deg) scaleX(-1);
  opacity: 0.24;
}

.painted-leaf--testi-tl {
  top: 4%;
  left: 3%;
  width: 70px;
  transform: rotate(-18deg);
  opacity: 0.4;
}

.painted-leaf--testi-br {
  bottom: 4%;
  right: 3%;
  width: 100px;
  transform: rotate(14deg) scaleX(-1);
  opacity: 0.42;
}

.painted-leaf--testi-c {
  top: 2%;
  right: 8%;
  width: 145px;
  transform: rotate(8deg);
  opacity: 0.24;
}

.painted-leaf--testi-sm {
  bottom: 10%;
  left: 2%;
  width: 38px;
  transform: rotate(-48deg);
  opacity: 0.36;
}

.painted-leaf--faq {
  top: 4%;
  left: 3%;
  width: 80px;
  transform: rotate(-30deg);
  opacity: 0.4;
}

.painted-leaf--faq-br {
  bottom: 4%;
  right: 3%;
  width: 95px;
  transform: rotate(22deg) scaleX(-1);
  opacity: 0.4;
}

.painted-leaf--faq-c {
  top: 76%;
  right: 2%;
  width: 46px;
  transform: rotate(25deg);
  opacity: 0.34;
}

.painted-leaf--faq-cm {
  bottom: 2%;
  left: 10%;
  width: 130px;
  transform: rotate(-15deg) scaleX(-1);
  opacity: 0.25;
}

.painted-leaf--contact {
  bottom: 4%;
  right: 3%;
  width: 110px;
  transform: rotate(15deg) scaleX(-1);
  opacity: 0.45;
}

.painted-leaf--contact-tl {
  top: 4%;
  left: 3%;
  width: 90px;
  transform: rotate(-16deg);
  opacity: 0.4;
}

/* Folhas sortidas nas bordas / entre seções — só cantos/laterais */
.painted-leaf--gap-tl {
  top: 1%;
  left: 2%;
  width: 64px;
  transform: rotate(-28deg);
  opacity: 0.34;
}

.painted-leaf--gap-br {
  bottom: 1%;
  right: 2%;
  width: 58px;
  transform: rotate(32deg) scaleX(-1);
  opacity: 0.32;
}

.painted-leaf--gap-ml {
  top: 1%;
  left: 6%;
  width: 68px;
  transform: rotate(16deg);
  opacity: 0.33;
}

.painted-leaf--gap-mr {
  bottom: 1%;
  right: 6%;
  width: 78px;
  transform: rotate(-20deg) scaleX(-1);
  opacity: 0.3;
}

.painted-leaf--gap-tl2 {
  top: 1%;
  right: 8%;
  left: auto;
  width: 52px;
  transform: rotate(44deg);
  opacity: 0.32;
}

.painted-leaf--gap-br2 {
  bottom: 1%;
  left: 4%;
  width: 88px;
  transform: rotate(-14deg);
  opacity: 0.28;
}

.painted-leaf--gap-edge-l {
  top: 50%;
  left: 1%;
  width: 60px;
  transform: rotate(-36deg);
  opacity: 0.3;
}

.painted-leaf--gap-edge-r {
  top: 35%;
  right: 1%;
  width: 54px;
  transform: rotate(24deg) scaleX(-1);
  opacity: 0.3;
}

.painted-leaf--gap-float-l {
  bottom: 1%;
  left: 3%;
  width: 56px;
  transform: rotate(12deg);
  opacity: 0.32;
}

.painted-leaf--gap-float-r {
  top: 1%;
  right: 3%;
  width: 70px;
  transform: rotate(-30deg) scaleX(-1);
  opacity: 0.3;
}

.painted-leaf--gap-soft-l {
  top: 55%;
  left: 1.5%;
  width: 48px;
  transform: rotate(-50deg);
  opacity: 0.3;
}

.painted-leaf--gap-soft-r {
  bottom: 1%;
  right: 4%;
  width: 82px;
  transform: rotate(18deg);
  opacity: 0.28;
}

.painted-leaf--footer {
  top: -20px;
  left: 8%;
  width: 90px;
  transform: rotate(-12deg);
  opacity: 0.35;
}

.painted-leaf--footer-br {
  bottom: 22%;
  right: 4%;
  width: 80px;
  transform: rotate(18deg) scaleX(-1);
  opacity: 0.32;
}

.section-relative {
  position: relative;
  overflow: hidden;
}

/* Separador delicado entre seções — linha central brilhante */
.section-relative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 42vw);
  height: 1px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(237, 212, 196, 0.15) 15%,
    rgba(255, 248, 240, 0.95) 50%,
    rgba(212, 180, 108, 0.55) 50.5%,
    rgba(255, 248, 240, 0.95) 51%,
    rgba(237, 212, 196, 0.15) 85%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(255, 250, 245, 0.9),
    0 0 22px rgba(212, 180, 108, 0.35);
  opacity: 0.9;
}

.section-relative::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  margin-top: -2.5px;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle, #fff9f2 0%, rgba(212, 180, 108, 0.7) 55%, transparent 70%);
  box-shadow: 0 0 10px rgba(255, 248, 240, 0.85);
  opacity: 0.85;
}

.botanical-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botanical-bg img {
  display: block;
  width: min(140%, 1800px);
  height: auto;
  max-width: none;
  opacity: 0.14;
  object-fit: contain;
}

.botanical-bg--full img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
}

.botanical-bg--how {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Flores ponta a ponta na seção inteira */
.botanical-bg--how img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scaleX(-1) scale(1.05);
  opacity: 0.16;
}

/* Sobre: flor um pouco mais baixa na seção */
.botanical-span {
  position: relative;
}

.botanical-span > .about.section-relative {
  position: relative;
  overflow: hidden;
  background: var(--white) !important;
}

.botanical-span > .about > .container {
  position: relative;
  z-index: 2;
}

.botanical-bg--from-diff {
  position: absolute;
  left: 0;
  top: 12%;
  bottom: -6%;
  width: min(50vw, 980px);
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: none;
  user-select: none;
}

.botanical-bg--from-diff img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left 18%;
  opacity: 0.32;
  transform: none;
}

/* Ultrawide */
@media (min-width: 1800px) {
  .botanical-bg--from-diff {
    top: 14%;
    bottom: -8%;
    width: min(46vw, 1140px);
  }

  .botanical-bg--from-diff img {
    object-position: left 22%;
    opacity: 0.34;
  }
}

/* Desktop médio */
@media (max-width: 1399px) and (min-width: 1100px) {
  .botanical-bg--from-diff {
    top: 11%;
    bottom: -5%;
    width: min(52vw, 900px);
  }

  .botanical-bg--from-diff img {
    object-position: left 16%;
  }
}

/* Desktop menor / laptop */
@media (max-width: 1099px) and (min-width: 992px) {
  .botanical-bg--from-diff {
    top: 10%;
    bottom: -4%;
    width: min(56vw, 720px);
  }

  .botanical-bg--from-diff img {
    object-position: left 14%;
    opacity: 0.28;
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
  .botanical-bg--from-diff {
    top: 8%;
    bottom: -3%;
    width: min(62vw, 520px);
  }

  .botanical-bg--from-diff img {
    object-fit: cover;
    object-position: left 12%;
    opacity: 0.24;
  }
}

/* Contato: flores ponta a ponta + taças maiores */
.contact.section-relative {
  position: relative;
  overflow: hidden;
  --contact-glass-h: clamp(560px, 88vh, 1120px);
  --contact-glass-w: min(44vw, calc(var(--contact-glass-h) * 0.98));
  --contact-glass-opacity: 0.3;
  --contact-glass-offset: -10%;
  --contact-flower-h: clamp(180px, 24vw, 360px);
  --contact-flower-opacity: 0.88;
}

.contact__header {
  position: relative;
  z-index: 2;
  background: transparent;
  margin-top: clamp(0.5rem, 2vw, 1.25rem);
}

/* Flores — ponta a ponta no topo */
.botanical-bg--contact-flowers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--contact-flower-h);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.55) 68%,
    transparent 100%
  );
}

.botanical-bg--contact-flowers img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: var(--contact-flower-opacity);
  background: transparent;
  animation: watercolor-breathe 14s ease-in-out infinite;
  will-change: filter;
}

.botanical-bg--contact-left {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.botanical-bg--contact-left img {
  display: none;
}

/* Taças — maiores, laterais baixas */
.botanical-bg--contact-left::before,
.botanical-bg--contact-left::after {
  content: '';
  position: absolute;
  bottom: var(--contact-glass-offset);
  width: max(320px, var(--contact-glass-w));
  height: var(--contact-glass-h);
  background-image: url("../images/botanical-contact-glasses.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: var(--contact-glass-opacity);
  animation: watercolor-breathe 12s ease-in-out infinite;
  will-change: filter;
}

.botanical-bg--contact-left::before {
  left: 0;
  background-position: left bottom;
  -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 45%, transparent 100%);
}

.botanical-bg--contact-left::after {
  right: 0;
  background-position: right bottom;
  -webkit-mask-image: linear-gradient(270deg, #000 45%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 45%, transparent 100%);
}

/* Ultrawide */
@media (min-width: 1800px) {
  .contact.section-relative {
    --contact-glass-h: clamp(680px, 92vh, 1280px);
    --contact-glass-w: min(40vw, calc(var(--contact-glass-h) * 1));
    --contact-glass-opacity: 0.28;
    --contact-glass-offset: -12%;
    --contact-flower-h: clamp(240px, 20vw, 420px);
    --contact-flower-opacity: 0.85;
  }

  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after {
    width: max(420px, var(--contact-glass-w));
  }
}

/* Desktop */
@media (max-width: 1600px) and (min-width: 1281px) {
  .contact.section-relative {
    --contact-glass-h: clamp(580px, 85vh, 1080px);
    --contact-glass-w: min(42vw, calc(var(--contact-glass-h) * 0.98));
    --contact-glass-offset: -10%;
    --contact-flower-h: clamp(200px, 22vw, 360px);
  }
}

/* Notebook */
@media (max-width: 1280px) and (min-width: 1025px) {
  .contact.section-relative {
    --contact-glass-h: clamp(500px, 78vh, 920px);
    --contact-glass-w: min(44vw, calc(var(--contact-glass-h) * 0.98));
    --contact-glass-opacity: 0.28;
    --contact-glass-offset: -9%;
    --contact-flower-h: clamp(180px, 24vw, 320px);
    --contact-flower-opacity: 0.82;
  }

  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after {
    width: max(280px, var(--contact-glass-w));
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact.section-relative {
    --contact-glass-h: clamp(400px, 64vh, 700px);
    --contact-glass-w: min(46vw, calc(var(--contact-glass-h) * 1));
    --contact-glass-opacity: 0.24;
    --contact-glass-offset: -8%;
    --contact-flower-h: clamp(160px, 28vw, 280px);
    --contact-flower-opacity: 0.78;
  }

  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after {
    width: max(240px, var(--contact-glass-w));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact.section-relative {
    --contact-glass-h: clamp(300px, 52vh, 480px);
    --contact-glass-w: min(50vw, calc(var(--contact-glass-h) * 1.05));
    --contact-glass-opacity: 0.2;
    --contact-glass-offset: -6%;
    --contact-flower-h: clamp(130px, 40vw, 220px);
    --contact-flower-opacity: 0.75;
  }

  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after {
    width: max(180px, var(--contact-glass-w));
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .contact.section-relative {
    --contact-glass-h: clamp(240px, 48vh, 360px);
    --contact-glass-w: min(54vw, calc(var(--contact-glass-h) * 1.08));
    --contact-glass-opacity: 0.18;
    --contact-glass-offset: -5%;
    --contact-flower-h: clamp(110px, 46vw, 180px);
    --contact-flower-opacity: 0.72;
  }

  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after {
    width: max(150px, var(--contact-glass-w));
  }
}

@keyframes watercolor-breathe {
  0%, 100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.08) brightness(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .botanical-bg--contact-left::before,
  .botanical-bg--contact-left::after,
  .botanical-bg--contact-flowers img {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .about__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diferenciais__grid,
  .services-preview__grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  .timeline {
    max-width: 100%;
  }

  .timeline::before {
    left: 27px;
    transform: none;
  }

  .timeline__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: var(--space-4);
    align-items: start;
  }

  .timeline__step,
  .timeline__item:nth-child(odd) .timeline__step,
  .timeline__item:nth-child(even) .timeline__step {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline__content,
  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    min-width: 0;
  }

  .timeline__spacer,
  .timeline__item:nth-child(odd) .timeline__spacer,
  .timeline__item:nth-child(even) .timeline__spacer {
    display: none;
  }

  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
  }
}

/* Folhas leves no meio — pequenas, baixa opacidade */
.painted-leaf--about-mid {
  top: 48%;
  left: 46%;
  width: 58px;
  transform: rotate(18deg) scaleX(-1);
  opacity: 0.22;
}

.painted-leaf--diff-mid {
  top: 52%;
  left: 54%;
  width: 52px;
  transform: rotate(-26deg);
  opacity: 0.2;
}

.painted-leaf--services-mid {
  top: 42%;
  left: 48%;
  width: 44px;
  transform: rotate(34deg);
  opacity: 0.22;
}

.painted-leaf--how-mid {
  top: 46%;
  left: 42%;
  width: 50px;
  transform: rotate(-14deg) scaleX(-1);
  opacity: 0.2;
}

.painted-leaf--testi-mid {
  top: 50%;
  left: 56%;
  width: 46px;
  transform: rotate(22deg);
  opacity: 0.2;
}

.painted-leaf--faq-mid {
  top: 44%;
  left: 50%;
  width: 40px;
  transform: rotate(-38deg);
  opacity: 0.22;
}

/* Conteúdo sempre acima da decoração */
.section-relative > .container,
.hero > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--space-5);
  }

  .about__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diferenciais__grid,
  .form-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .service-card__body {
    padding: var(--space-6) var(--space-5);
    gap: var(--space-3);
  }



  .contact__form-wrap {
    padding: var(--space-6) var(--space-5);
  }

  .contact__social {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .contact__social-btn {
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  .contact__item,
  .contact__item-text {
    min-width: 0;
  }

  .contact__item-value,
  .form-checkbox label,
  .timeline__content p,
  .service-card p,
  .diferencial-card p,
  .testimonial-card__text {
    overflow-wrap: break-word;
  }

  .contact__map {
    height: 180px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }

  .form-header {
    margin-bottom: var(--space-5);
  }

  .form-header h2 {
    font-size: var(--text-xl);
  }

  .contact .btn--lg,
  .form__submit-wrap .btn {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    min-height: 0;
  }

  .contact .btn--lg .btn-text {
    white-space: normal;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .category-header p {
    max-width: none;
    text-align: left;
  }


  .painted-leaf--hero-tl { width: 56px; opacity: 0.38; left: 1%; top: 8%; }
  .painted-leaf--hero-br { width: 64px; opacity: 0.32; right: 1%; bottom: 4%; }
  .painted-leaf--hero-bl { width: 48px; opacity: 0.3; left: 2%; bottom: 6%; }
  .painted-leaf--hero-tr { width: 36px; opacity: 0.32; right: 2%; top: 10%; }
  .painted-leaf--hero-edge { width: 34px; right: 3%; bottom: 14%; opacity: 0.28; }
  .painted-leaf--hero-gap { width: 48px; left: 4%; bottom: 2%; opacity: 0.3; }

  .painted-leaf--about-cm,
  .painted-leaf--diff-c,
  .painted-leaf--services-cm,
  .painted-leaf--how-cm,
  .painted-leaf--testi-c,
  .painted-leaf--faq-cm,
  .painted-leaf--gap-tl2,
  .painted-leaf--gap-br2,
  .painted-leaf--gap-float-l,
  .painted-leaf--gap-soft-r { display: none; }

  .painted-leaf--about,
  .painted-leaf--about-bl,
  .painted-leaf--about-tr,
  .painted-leaf--diff-tr,
  .painted-leaf--services-tl,
  .painted-leaf--how-tr,
  .painted-leaf--testi-br,
  .painted-leaf--faq,
  .painted-leaf--faq-br,
  .painted-leaf--contact,
  .painted-leaf--contact-tl { width: 52px; opacity: 0.32; }

  .painted-leaf--about-c,
  .painted-leaf--diff-sm,
  .painted-leaf--services-c,
  .painted-leaf--how-c,
  .painted-leaf--testi-sm,
  .painted-leaf--faq-c,
  .painted-leaf--gap-tl,
  .painted-leaf--gap-br,
  .painted-leaf--gap-ml,
  .painted-leaf--gap-mr,
  .painted-leaf--gap-edge-l,
  .painted-leaf--gap-edge-r,
  .painted-leaf--gap-float-r,
  .painted-leaf--gap-soft-l { width: 34px; opacity: 0.28; }

  .painted-leaf--diff-bl,
  .painted-leaf--services-br,
  .painted-leaf--how-bl,
  .painted-leaf--testi-tl,
  .painted-leaf--footer-br,
  .painted-leaf--about-mid,
  .painted-leaf--diff-mid,
  .painted-leaf--services-mid,
  .painted-leaf--how-mid,
  .painted-leaf--testi-mid,
  .painted-leaf--faq-mid { display: none; }

  .botanical-bg--full img {
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    opacity: 0.12;
  }

  /* Como funciona: manter flores de ponta a ponta no mobile */
  .botanical-bg--how img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1) scale(1.12);
    opacity: 0.14;
  }

  /* Sobre mobile: enquadra a flor (não só o caule/folhas da esquerda) */
  .botanical-span > .about.section-relative {
    overflow: hidden;
  }

  .botanical-bg--from-diff {
    top: clamp(7.5rem, 28vw, 11rem);
    bottom: auto;
    height: min(70vh, 520px);
    width: min(100vw, 420px);
    align-items: stretch;
    overflow: hidden;
  }

  .botanical-bg--from-diff img {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 0;
    object-fit: cover;
    object-position: 16% 38%;
    opacity: 0.42;
    transform: none;
  }

}

@media (max-width: 480px) {
  .about__cards,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }


  .contact__form-wrap {
    padding: var(--space-5) var(--space-4);
  }

  .botanical-bg--from-diff {
    width: min(100vw, 400px);
    height: min(64vh, 480px);
    top: clamp(8rem, 32vw, 12rem);
    bottom: auto;
  }

  .botanical-bg--from-diff img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% 40%;
    transform: none;
    opacity: 0.42;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5) var(--space-3);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ─── Inscrições ─────────────────────────────────────────────── */

.experience-grid--inscricoes {
  align-items: start;
}

@media (min-width: 1024px) {
  .experience-grid--inscricoes .experience__image {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1.5rem);
  }
}

.inscricoes-content {
  gap: var(--space-8);
  min-width: 0;
}

.inscricoes-content h2 {
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.inscricoes-lead {
  margin: var(--space-3) 0 0;
  color: var(--text-light);
  font-size: var(--text-lg);
}

.inscricoes-block {
  padding-top: var(--space-6);
  border-top: 1px solid color-mix(in srgb, var(--beige) 65%, transparent);
}

.inscricoes-block--event {
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  border-top: none;
  background: color-mix(in srgb, var(--white) 70%, var(--salmon));
  border: 1px solid color-mix(in srgb, var(--beige) 55%, transparent);
  border-radius: var(--radius-lg, 12px);
}

.inscricoes-event__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
}

.inscricoes-event__title {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  margin: 0 0 var(--space-6);
  color: var(--text);
  font-weight: 500;
  line-height: 1.25;
}

.inscricoes-block h3 {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 0 0 var(--space-5);
  color: var(--text);
  font-weight: 500;
}

.inscricoes-meta {
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.inscricoes-meta > div {
  display: grid;
  grid-template-columns: 7.25rem minmax(0, 1fr);
  gap: var(--space-3);
  align-items: baseline;
}

.inscricoes-meta dt {
  margin: 0;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

.inscricoes-meta dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  min-width: 0;
}

.experience-grid--inscricoes .experience__image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.inscricoes-includes {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.inscricoes-includes li {
  color: var(--text);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.inscricoes-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mauve);
}

.inscricoes-price {
  font-family: var(--font-subtitle);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  color: var(--text);
  margin: 0;
}

.inscricoes-price strong {
  color: var(--mauve);
  font-weight: 600;
}

.inscricoes-pix > p {
  margin: 0 0 var(--space-5);
  color: var(--text-light);
}

.inscricoes-pix__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  padding: var(--space-5);
  background: color-mix(in srgb, var(--white) 75%, var(--salmon));
  border: 1px solid color-mix(in srgb, var(--beige) 55%, transparent);
}

.inscricoes-pix__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.inscricoes-pix__qr img {
  width: 168px;
  height: 168px;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
}

.inscricoes-pix__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  min-width: min(100%, 200px);
  flex: 1;
}

.inscricoes-pix__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.inscricoes-pix__key-note {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-light);
}

.inscricoes-pix__copia {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  border: 1px solid color-mix(in srgb, var(--beige) 70%, transparent);
  background: var(--white);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.4;
  word-break: break-all;
  resize: none;
}

.inscricoes-pix__copia:focus {
  outline: 2px solid var(--mauve);
  outline-offset: 2px;
}

.inscricoes-pix__key {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.inscricoes-pix__amount {
  margin: 0;
  color: var(--text);
  font-size: var(--text-base);
}

.inscricoes-pix__amount strong {
  color: var(--mauve);
}

.inscricoes-pix__feedback {
  font-size: var(--text-sm);
  color: var(--green-light);
}

.inscricoes-cta {
  width: 100%;
  max-width: 280px;
}

/* Folhas delicadas — Inscrições */
.painted-leaf--insc-hero-tl {
  top: 14%;
  left: 3%;
  width: 72px;
  transform: rotate(-22deg);
  opacity: 0.34;
}

.painted-leaf--insc-hero-tr {
  top: 18%;
  right: 5%;
  width: 88px;
  transform: rotate(18deg);
  opacity: 0.3;
}

.painted-leaf--insc-hero-bl {
  bottom: 10%;
  left: 6%;
  width: 64px;
  transform: rotate(-6deg) scaleX(-1);
  opacity: 0.28;
}

.painted-leaf--insc-hero-br {
  bottom: 12%;
  right: 4%;
  width: 58px;
  transform: rotate(14deg);
  opacity: 0.32;
}

.painted-leaf--insc-hero-fl1 {
  top: 28%;
  left: 12%;
  width: 70px;
  transform: rotate(-8deg);
  opacity: 0.38;
}

.painted-leaf--insc-hero-fl2 {
  top: 8%;
  right: 14%;
  width: 52px;
  transform: rotate(22deg);
  opacity: 0.36;
}

.painted-leaf--insc-hero-fl3 {
  bottom: 16%;
  right: 18%;
  width: 90px;
  transform: rotate(-12deg);
  opacity: 0.32;
}

.painted-leaf--insc-hero-gap {
  top: 42%;
  left: 1%;
  width: 44px;
  transform: rotate(32deg);
  opacity: 0.24;
}

.painted-leaf--insc-exp-tl {
  top: 4%;
  left: 2%;
  width: 96px;
  transform: rotate(-12deg);
  opacity: 0.26;
}

.painted-leaf--insc-exp-tr {
  top: 8%;
  right: 3%;
  width: 64px;
  transform: rotate(28deg) scaleX(-1);
  opacity: 0.28;
}

.painted-leaf--insc-exp-ml {
  top: 42%;
  left: 1%;
  width: 48px;
  transform: rotate(-30deg);
  opacity: 0.22;
}

.painted-leaf--insc-exp-mr {
  top: 48%;
  right: 2%;
  width: 70px;
  transform: rotate(10deg);
  opacity: 0.24;
}

.painted-leaf--insc-exp-bl {
  bottom: 6%;
  left: 4%;
  width: 70px;
  transform: rotate(-16deg) scaleX(-1);
  opacity: 0.3;
}

.painted-leaf--insc-exp-br {
  bottom: 10%;
  right: 5%;
  width: 78px;
  transform: rotate(22deg);
  opacity: 0.26;
}

.painted-leaf--insc-exp-c {
  top: 28%;
  left: 48%;
  width: 42px;
  transform: rotate(-8deg);
  opacity: 0.18;
  z-index: 0;
}

.painted-leaf--insc-exp-fl1 {
  top: 18%;
  left: 6%;
  width: 58px;
  transform: rotate(-18deg);
  opacity: 0.34;
}

.painted-leaf--insc-exp-fl2 {
  top: 12%;
  right: 8%;
  width: 64px;
  transform: rotate(14deg);
  opacity: 0.36;
}

.painted-leaf--insc-exp-fl3 {
  top: 58%;
  right: 1%;
  width: 100px;
  transform: rotate(-6deg);
  opacity: 0.3;
}

.painted-leaf--insc-exp-fl4 {
  bottom: 22%;
  left: 10%;
  width: 48px;
  transform: rotate(26deg);
  opacity: 0.32;
}

.painted-leaf--insc-exp-fl5 {
  top: 72%;
  left: 46%;
  width: 40px;
  transform: rotate(-24deg);
  opacity: 0.22;
  z-index: 0;
}

.painted-leaf--insc-exp-leaf2 {
  top: 34%;
  right: 6%;
  width: 54px;
  transform: rotate(40deg);
  opacity: 0.24;
}

.painted-leaf--insc-exp-leaf3 {
  bottom: 28%;
  right: 12%;
  width: 52px;
  transform: rotate(-20deg) scaleX(-1);
  opacity: 0.26;
}

.painted-leaf--insc-foot-fl {
  top: 18%;
  left: 42%;
  width: 56px;
  transform: rotate(10deg);
  opacity: 0.28;
}

.painted-leaf--insc-foot-fl2 {
  bottom: 28%;
  right: 18%;
  width: 84px;
  transform: rotate(-14deg);
  opacity: 0.26;
}

/* Modal comprovante */
body.modal-open {
  overflow: hidden;
}

.inscricoes-modal[hidden] {
  display: none !important;
}

.inscricoes-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: var(--space-6);
}

.inscricoes-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--text) 45%, transparent);
  border: none;
  cursor: pointer;
}

.inscricoes-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: var(--space-10) var(--space-8);
  background: var(--white);
  box-shadow: var(--shadow-lg, 0 20px 50px rgba(44, 32, 24, 0.18));
  text-align: center;
}

.inscricoes-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  padding: var(--space-2);
  line-height: 0;
}

.inscricoes-modal__close:hover {
  color: var(--text);
}

.inscricoes-modal__title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin: 0 0 var(--space-5);
  color: var(--text);
  font-weight: 500;
}

.inscricoes-modal__text {
  margin: 0 0 var(--space-8);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

.inscricoes-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-width: 200px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: #A8C9B0;
  color: #1F3A2A;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.inscricoes-modal__whatsapp:hover {
  background: #96BCA0;
  transform: translateY(-1px);
  color: #1F3A2A;
}

.inscricoes-modal__whatsapp:focus-visible {
  outline: 2px solid var(--mauve);
  outline-offset: 3px;
}
