/* ============================================================
   MY LITTLE PET V2 — HOME (Index V2) — POLISHED
   Premium / Editorial / Boutique
   ============================================================ */

/* ─────────────────────────────────────────────
   HEADER — POLISHED
   ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  overflow: visible;
  background: rgba(255, 248, 250, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(240, 221, 229, 0.5);
  padding: 0;
  transition:
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(232, 160, 191, 0.08),
    0 4px 24px rgba(45, 34, 51, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
  overflow: visible;
}

/* Brand — mais presença */
.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.header-brand:hover {
  opacity: 0.85;
}

.header-brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1;
}

.header-brand-tagline {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 2px;
}

/* Nav — mais sofisticada */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-nav a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  position: relative;
  transition:
    color var(--transition-base),
    background var(--transition-base);
}

.header-nav a:hover {
  color: var(--color-primary-hover);
  background: rgba(232, 160, 191, 0.08);
}

.header-nav a.is-active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  background: rgba(232, 160, 191, 0.10);
}

.header-nav .nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  margin: 0 var(--space-sm);
}

.header-nav a.nav-admin {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  font-size: 0.6875rem;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.06);
  padding: 0.375rem 0.875rem;
  margin-left: var(--space-sm);
}

.header-nav a.nav-admin:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-inverse);
  box-shadow: 0 0 16px var(--color-accent-glow);
}

/* Mobile menu toggle */
.header-menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  line-height: 1;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.header-menu-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


/* ─────────────────────────────────────────────
   HERO — POLISHED
   ───────────────────────────────────────────── */

.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232, 160, 191, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(186, 144, 198, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, var(--color-accent-soft), rgba(245, 234, 204, 0.6));
  color: var(--color-accent-hover);
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.hero-title .text-highlight {
  color: var(--color-primary);
  position: relative;
}

.hero-title .text-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-soft), var(--color-primary), var(--color-primary-soft));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
}

.hero-text {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
  padding-top: var(--space-sm);
}

/* Hero visual — polished */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Brand Showcase — logo as editorial centerpiece */
.hero-brand-showcase {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  box-shadow:
    0 8px 40px rgba(45, 34, 51, 0.10),
    0 2px 8px rgba(45, 34, 51, 0.04);
  border: 1px solid rgba(232, 160, 191, 0.15);
  background:
    linear-gradient(160deg,
      rgba(253, 246, 249, 1) 0%,
      rgba(245, 213, 229, 0.35) 30%,
      rgba(228, 212, 237, 0.20) 60%,
      rgba(253, 242, 246, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Ambient radial glow inside */
.hero-brand-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(232, 160, 191, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 65%, rgba(186, 144, 198, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative inner border — filigree */
.hero-brand-showcase::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(232, 160, 191, 0.12);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

/* Logo inside showcase */
.hero-brand-showcase .hero-logo {
  width: 80%;
  max-width: 380px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(232, 160, 191, 0.15));
  transition: transform var(--transition-smooth);
}

.hero-brand-showcase:hover .hero-logo {
  transform: scale(1.02);
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(232, 160, 191, 0.12) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* Decorative floating orbs — softer */
.hero-decor {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

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

.hero-decor-1 {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary-soft), rgba(232, 160, 191, 0.20));
  top: -16px;
  right: -16px;
  opacity: 0.5;
  animation-delay: 0s;
}

.hero-decor-2 {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-secondary-soft), rgba(186, 144, 198, 0.20));
  bottom: 60px;
  left: -12px;
  opacity: 0.4;
  animation-delay: 2s;
}

.hero-decor-3 {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-accent-soft), rgba(212, 175, 55, 0.15));
  top: 40%;
  right: -24px;
  opacity: 0.35;
  animation-delay: 4s;
}


/* ─────────────────────────────────────────────
   PLACEHOLDER UPGRADE — PREMIUM SVG
   ───────────────────────────────────────────── */

/* Override base placeholders for editorial look */
.placeholder-image {
  background:
    linear-gradient(160deg,
      rgba(253, 246, 249, 1) 0%,
      rgba(245, 213, 229, 0.5) 30%,
      rgba(228, 212, 237, 0.3) 60%,
      rgba(253, 242, 246, 0.8) 100%);
  border: 1px solid rgba(240, 221, 229, 0.6);
  position: relative;
}

/* Inner decorative pattern — replaces emoji feel */
.placeholder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(232, 160, 191, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 65%, rgba(186, 144, 198, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative filigree lines via pseudo — editorial elegance */
.placeholder-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 160, 191, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

/* SVG icon styling — replacing emoji */
.placeholder-image .placeholder-icon {
  font-size: 0;
  width: clamp(64px, 32%, 112px);
  height: clamp(64px, 32%, 112px);
  margin-bottom: var(--space-sm);
  opacity: 0.42;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image .placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.placeholder-image .placeholder-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.4;
}

/* Gallery items — subtle distinct gradients */
.gallery-item:nth-child(odd) .placeholder-image {
  background:
    linear-gradient(145deg,
      rgba(253, 246, 249, 1) 0%,
      rgba(245, 213, 229, 0.45) 50%,
      rgba(253, 242, 246, 0.7) 100%);
}

.gallery-item:nth-child(even) .placeholder-image {
  background:
    linear-gradient(145deg,
      rgba(248, 244, 252, 1) 0%,
      rgba(228, 212, 237, 0.40) 50%,
      rgba(253, 246, 249, 0.7) 100%);
}

/* Service placeholders — each slightly unique */
.service-card:nth-child(1) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(200, 220, 240, 0.25) 50%, #FFF8FA 100%); }
.service-card:nth-child(2) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(245, 213, 229, 0.35) 50%, #FFF8FA 100%); }
.service-card:nth-child(3) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(245, 234, 204, 0.35) 50%, #FFF8FA 100%); }
.service-card:nth-child(4) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(228, 212, 237, 0.30) 50%, #FFF8FA 100%); }
.service-card:nth-child(5) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(226, 245, 234, 0.30) 50%, #FFF8FA 100%); }
.service-card:nth-child(6) .placeholder-image { background: linear-gradient(150deg, #FDF6F9 0%, rgba(200, 215, 235, 0.30) 50%, #FFF8FA 100%); }


/* ─────────────────────────────────────────────
   INTRO / SOBRE — POLISHED
   ───────────────────────────────────────────── */

.intro {
  padding: 5rem 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(240, 221, 229, 0.4);
  border-bottom: 1px solid rgba(240, 221, 229, 0.4);
  position: relative;
}

.intro .container {
  max-width: 820px;
  text-align: center;
}

.section-label,
.intro-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-label::before,
.section-label::after,
.intro-label::before,
.intro-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.3;
}

.section-label::before,
.intro-label::before { right: calc(100% + 12px); }
.section-label::after,
.intro-label::after  { left:  calc(100% + 12px); }

.intro-label {
  margin-bottom: var(--space-md);
}

.intro h2 {
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
}

.intro-text {
  font-size: var(--text-h5);
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.intro-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  max-width: 175px;
}

.intro-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-soft), rgba(245, 213, 229, 0.4));
  border-radius: var(--radius-full);
  font-size: 1.375rem;
  border: 1px solid rgba(232, 160, 191, 0.12);
  box-shadow: 0 2px 12px rgba(232, 160, 191, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.intro-feature-icon svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
  display: block;
}

.intro-feature-title {
  font-family: var(--font-ui);
  font-size: var(--text-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.intro-feature-desc {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  text-align: center;
  line-height: var(--lh-relaxed);
}


/* ─────────────────────────────────────────────
   SERVIÇOS — POLISHED
   ───────────────────────────────────────────── */

.services {
  padding: 5rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}


.services-header h2 {
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.services-header p {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(240, 221, 229, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(45, 34, 51, 0.04);
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth),
    border-color var(--transition-smooth);
}

.service-card:hover {
  box-shadow:
    0 12px 40px rgba(45, 34, 51, 0.10),
    0 0 0 1px rgba(232, 160, 191, 0.15);
  border-color: rgba(232, 160, 191, 0.25);
  transform: translateY(-4px);
}

.service-card .service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card .service-image .placeholder-image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.service-card .service-image .placeholder-image::after {
  inset: 0;
  border-radius: 0;
  border: none;
}

/* Service photo images */
.service-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-photo {
  position: relative;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,248,250,0.08) 0%,
      rgba(255,248,250,0.22) 100%
    );

  pointer-events: none;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter:
    brightness(1.03)
    saturate(0.92);

  transition: transform 0.6s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.04);
}

.service-card .service-body {
  padding: 1.375rem var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card .service-name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.service-card .service-desc {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

.service-card .service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(240, 221, 229, 0.4);
}

.service-card .service-price {
  font-family: var(--font-ui);
  font-size: var(--text-body-sm);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}

.service-card .service-cta {
  font-family: var(--font-ui);
  font-size: var(--text-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition:
    color var(--transition-fast),
    gap var(--transition-fast);
}

.service-card .service-cta:hover {
  color: var(--color-primary-hover);
  gap: 0.5rem;
}


/* ─────────────────────────────────────────────
   GALERIA — POLISHED
   ───────────────────────────────────────────── */

.gallery-preview {
  padding: 5rem 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(240, 221, 229, 0.4);
  border-bottom: 1px solid rgba(240, 221, 229, 0.4);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}


.gallery-header h2 {
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.gallery-header p {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto;
}

/* Editorial masonry-inspired grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
  margin-bottom: 2.5rem;
}

/* Featured items span 2 rows */
.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45, 34, 51, 0.04);
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth);
}

.gallery-item:hover {
  box-shadow:
    0 8px 32px rgba(45, 34, 51, 0.10),
    0 0 20px rgba(232, 160, 191, 0.08);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border: none;
}

.gallery-item .placeholder-image::after {
  inset: 0;
  border-radius: 0;
  border: none;
}

.gallery-footer {
  text-align: center;
}


/* ─────────────────────────────────────────────
   CTA SECTION — POLISHED
   ───────────────────────────────────────────── */

.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background:
    linear-gradient(135deg,
      rgba(245, 213, 229, 0.6) 0%,
      rgba(228, 212, 237, 0.4) 40%,
      rgba(245, 234, 204, 0.35) 70%,
      rgba(253, 246, 249, 0.8) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(45, 34, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(232, 160, 191, 0.15);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(232, 160, 191, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(186, 144, 198, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative border inside */
.cta-card::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(232, 160, 191, 0.10);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-card p {
  font-size: var(--text-h5);
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.85;
  position: relative;
}

.cta-card .btn {
  position: relative;
}


/* ─────────────────────────────────────────────
   FOOTER — POLISHED (softer, premium)
   ───────────────────────────────────────────── */

.site-footer {
  background: #2D2233;
  color: var(--color-text-inverse);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: auto;
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-h5);
  font-weight: var(--fw-bold);
  margin-bottom: 0.375rem;
  color: var(--color-text-inverse);
}

.footer-brand-desc {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.50);
  line-height: var(--lh-relaxed);
  max-width: 260px;
}

.footer-column h6 {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links li {
  line-height: 1;
}

.footer-links a {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-soft);
}

.footer-links .footer-info {
  color: rgba(255,255,255,0.50);
  font-size: 0.8125rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 0.75rem;
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.50);
}

.footer-contact-icon {
  font-size: 0.875rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.footer-social:empty {
  display: none;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.9375rem;
  text-decoration: none;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}

.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 0.5rem;
}

.footer-newsletter-inner {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter-inner h6 {
  color: #fff;
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
}

.footer-newsletter-inner p {
  color: rgba(255,255,255,0.50);
  font-size: 0.75rem;
  margin: 0 0 0.75rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form .form-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.8125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.30);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-primary-soft);
}


/* ─────────────────────────────────────────────
   MOBILE DRAWER
   ───────────────────────────────────────────── */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 34, 51, 0.45);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: var(--color-surface);
  z-index: 100001;
  box-shadow: -8px 0 32px rgba(45, 34, 51, 0.14);
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: var(--color-primary);
  background: rgba(232, 160, 191, 0.08);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-drawer-links a {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-drawer-links a:hover {
  color: var(--color-primary-hover);
  background: rgba(232, 160, 191, 0.06);
}

.mobile-drawer-links a.is-active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  background: rgba(232, 160, 191, 0.08);
  border-right: 3px solid var(--color-primary);
}

.mobile-drawer-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.5rem 1.5rem;
}

.mobile-drawer-admin {
  color: var(--color-accent) !important;
  font-weight: var(--fw-semibold) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ─────────────────────────────────────────────
   RESPONSIVO — HOME
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

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

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(n+7) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    height: 64px;
  }

  .header-brand-name {
    font-size: 1.125rem;
  }

  .header-brand-tagline {
    display: none;
  }
  .header-nav {
    display: none !important;
  }

  .header-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual::before,
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-decor {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-item:nth-child(n+5) {
    display: none;
  }

  .gallery-item:nth-child(1), 
    .gallery-item:nth-child(4) {                                                                                       
      grid-row: span 1;                              
    }              

  .intro {
    padding: 3.5rem 0;
  }

  .intro-features {
    gap: var(--space-lg);
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

  .cta-card::after {
    inset: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto var(--space-md);
  }

  .footer-brand-desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .gallery-grid {
    gap: var(--space-xs);
}

  .gallery-grid {                                  
      grid-template-columns: 1fr;
    }


  .cta-card h2 {
    font-size: var(--text-h2);
  }

  .footer-copyright {
    font-size: 0.625rem;
  }

  .footer-bottom-links {
    gap: var(--space-md);
  }
}
