/* ========================================
   AGÊNCIA LUTUOSA MATRIZ — Premium CSS
   Part 1/3: Foundation + First Sections
   ======================================== */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --color-bg: #0f0e0c;
  --color-bg-elevated: rgba(255, 255, 255, 0.02);
  --color-bg-card: #161616;
  --color-bg-card-hover: #1c1c1c;
  --color-gold: #c9a55c;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #8a6d3b;
  --color-text: #f0ebe3;
  --color-text-secondary: #9a9088;
  --color-text-muted: #6a6460;
  --color-border: rgba(201, 165, 92, 0.12);
  --color-border-hover: rgba(201, 165, 92, 0.30);
  --color-whatsapp: #1db954;
  --color-whatsapp-hover: #179141;
  --color-overlay: rgba(10, 10, 10, 0.7);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-py: clamp(4rem, 8vw, 7rem);
  --container: min(90%, 1200px);
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 20px rgba(201,165,92,0.08);
  /* Candlelight cursor (set by JS on desktop) */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: #0c0b0a;
  background-image: linear-gradient(135deg, #080706 0%, #14100b 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* --- Candlelight Layer 1: Ambient Breathing --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 85% 60%, rgba(230, 100, 10, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(255, 160, 40, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 30%, rgba(201, 165, 92, 0.06) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: ambientBreathe 15s ease-in-out infinite alternate;
}

@keyframes ambientBreathe {
  0%   { opacity: 0.6; }
  33%  { opacity: 1; }
  66%  { opacity: 0.7; }
  100% { opacity: 0.9; }
}

/* --- Candlelight Layer 2: Cursor Glow (desktop, set by JS) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  background: radial-gradient(circle 150px at var(--mouse-x) var(--mouse-y), rgba(255, 140, 30, 0.12) 0%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.cursor-glow-active::after {
  opacity: 1;
}

/* --- Layout --- */
.container { width: var(--container); margin: 0 auto; }
.section { padding: var(--section-py) 0; position: relative; z-index: 2; }
.section--alt {
  background-color: var(--color-bg-elevated);
  background-image: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,165,92,0.03) 0%, transparent 70%);
}

/* --- Section Titles --- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-title--center { text-align: center; }

/* Accent glow on headings (Layer 3) */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.2rem auto 0;
  animation: accentPulse 4s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px rgba(201,165,92,0.1); }
  50%      { opacity: 1;   box-shadow: 0 0 16px rgba(201,165,92,0.2); }
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn__text { font-size: 0.95rem; }
.btn__subtext { 
  font-size: 0.75rem; 
  opacity: 0.85; 
  font-weight: 400;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(201,165,92,0.25);
}
.btn--primary:hover {
  background: var(--color-gold-light);
  color: var(--color-bg);
  box-shadow: 0 6px 30px rgba(201,165,92,0.35);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-border-hover);
}
.btn--secondary:hover {
  background: rgba(201,165,92,0.08);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* --- Cards (base) --- */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1002;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 64px;
  width: auto;
}

.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.25rem 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--color-text);
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu__cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.4s;
}
.mobile-menu.active .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HERO (Clean)
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Very subtle gradient to keep focus on image */
  background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.2) 100%);
}

.hero__scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.hero__scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-12px) rotate(45deg); }
  60% { transform: translateY(-6px) rotate(45deg); }
}

/* ========================================
   INTRODUÇÃO (New Section)
   ======================================== */
.section--intro {
  background-color: var(--color-bg-elevated);
  text-align: center;
  padding: 6rem 0;
}

.container--narrow {
  max-width: 800px;
}

.intro__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 20px rgba(201,165,92,0.1));
}

.intro__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.intro__slogan {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.intro__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 2.5rem auto;
}

.intro__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.intro__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 3.5rem;
}

.intro__ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   PRIMEIROS PASSOS (Steps)
   ======================================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.step-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.step-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========================================
   SOBRE NÓS (About)
   ======================================== */
.about__text {
  max-width: 800px;
  margin: 2rem auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

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

.value-card {
  text-align: center;
  padding: 2rem 1rem;
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}
.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}
.value-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.about__team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}
.team-member__photo {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin: 0 auto 1rem;
  transition: all var(--transition);
}
.team-member:hover .team-member__photo {
  border-color: var(--color-border-hover);
  box-shadow: 0 0 30px rgba(201,165,92,0.1);
}
.team-member__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text);
}
.team-member__role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   SERVIÇOS (Services)
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  transition: height var(--transition);
}
.service-card:hover::before {
  height: 100%;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

/* ========================================
   HORIZONTAL SCROLL CAROUSEL (Mobile)
   ======================================== */
.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel > * {
  scroll-snap-align: center;
  flex-shrink: 0;
}

/* Scroll hint arrow */
.carousel-hint {
  display: none;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 500;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
  animation: hintPulse 2s ease-in-out infinite;
}
.carousel-hint.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(4px); }
}

/* Dot indicators */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding-top: 0.75rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--color-gold);
  width: 18px;
  border-radius: 3px;
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE — Part 1
   (Tablet: 768-1024px)
   ======================================== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .steps__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about__values { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* Tablet carousels: show 2 cards */
  .carousel > * { width: calc(50% - 0.5rem); }
}

/* ========================================
   RESPONSIVE — Part 1
   (Mobile: <768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header__logo img { height: 36px; }

  .intro__content { padding: 0 1rem; }
  .intro__logo { width: 90px; margin-bottom: 1.5rem; }
  .intro__ctas { flex-direction: column; align-items: center; gap: 1rem; }
  .intro__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .intro__title { font-size: 2.5rem; }
  .intro__slogan { letter-spacing: 3px; font-size: 0.9rem; }
  .intro__divider { margin: 1.5rem auto; }

  /* Activate carousels */
  .steps__grid,
  .about__values,
  .services__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .steps__grid::-webkit-scrollbar,
  .about__values::-webkit-scrollbar,
  .services__grid::-webkit-scrollbar { display: none; }

  .steps__grid > *,
  .about__values > *,
  .services__grid > * {
    flex-shrink: 0;
    width: 85%;
    scroll-snap-align: center;
  }

  .carousel-hint { display: flex; }
  .carousel-dots { display: flex; }

  /* Disable reveal animation on carousel cards — snappy horizontal scroll */
  .steps__grid > .reveal,
  .about__values > .reveal,
  .services__grid > .reveal,
  .flores__grid > .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about__team { grid-template-columns: 1fr; max-width: 320px; }
  .team-member__photo { width: 220px; height: 280px; }
}

/* ========================================
   O QUE FAZER (Accordion)
   ======================================== */
.advice__intro {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.accordion { max-width: 800px; margin: 0 auto; }

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}
.accordion__header:hover { color: var(--color-gold-light); }

.accordion__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  transition: transform var(--transition);
}
.accordion__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1.5px;
  transform: translateY(-50%);
}
.accordion__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1.5px;
  transform: translateX(-50%);
}
.accordion__item.active .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content {
  padding: 0 0 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.advice__closing {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-gold-light);
}

/* ========================================
   DOCUMENTOS
   ======================================== */
.docs__intro {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.docs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.docs-card { padding: 2rem; }

.docs-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.docs-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.docs-card__list li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding-left: 1.2rem;
  position: relative;
}
.docs-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.docs__note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ========================================
   FLORES (Flowers)
   ======================================== */
.flores__intro {
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

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

.flower-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.flower-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.5s ease;
}
.flower-card:hover .flower-card__image {
  transform: scale(1.05);
}

.flower-card__body { padding: 1.25rem; }

.flower-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.flower-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--color-whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: all var(--transition);
}
.flower-card__btn:hover {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.flores__cta {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* ========================================
   ÁREA DE ATUAÇÃO (Service Area)
   ======================================== */
.area__map {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin: 2rem 0;
  overflow: hidden;
}
.area__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
  transition: filter var(--transition);
}
.area__map:hover iframe {
  filter: grayscale(0.3) brightness(0.7) contrast(1.1);
}

.area__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}

.area__badge {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.area__badge:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.area__text {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.area__seo {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   TESTEMUNHO (Testimonial)
   ======================================== */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.testimonial__stars {
  font-size: 1.3rem;
  color: var(--color-gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.testimonial__source {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}
.testimonial__source a { color: var(--color-gold); }

/* ========================================
   FAQ
   ======================================== */
/* Reuses .accordion styles from O Que Fazer section */

/* ========================================
   CONTACTOS
   ======================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}

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

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__item-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}
.contact__item-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.contact__item-text strong {
  display: block;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact__map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 0;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer__brand-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}
.footer__brand-slogan {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-secondary);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.footer__links a:hover { color: var(--color-gold-light); }

.footer__contact-item {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,165,92,0.08);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.footer__legal a:hover { color: var(--color-gold); }

/* ========================================
   FLOATING ELEMENTS
   ======================================== */

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-whatsapp);
  color: var(--color-whatsapp);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float.filled {
  background: var(--color-whatsapp);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.3);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  background: var(--color-whatsapp);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
  50%      { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 8px rgba(37, 211, 102, 0.2); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-gold);
}

/* Mobile Bottom Bar — REMOVED */

/* ========================================
   RESPONSIVE — Part 2
   ======================================== */
@media (max-width: 1024px) {
  .flores__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .flores__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .flores__grid::-webkit-scrollbar { display: none; }
  .flores__grid > * {
    flex-shrink: 0;
    width: 75%;
    scroll-snap-align: center;
  }

  .area__badges {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .area__badges::-webkit-scrollbar { display: none; }
  .area__badge {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .testimonial { padding: 2rem 1.5rem; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 250px; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand-logo { display: block; margin-left: auto; margin-right: auto; }
  .footer__links { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Header Layout — Logo(left), Button(center), Hamburger(right) */
  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
  }
  .header__logo { justify-self: start; }
  .header__logo img { height: 52px; } /* Enlarge mobile logo */
  .header__cta { 
    display: inline-flex; 
    justify-self: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    transition: all var(--transition);
  }
  .header__cta .btn__text { font-size: 0.8rem; }
  .header__cta .btn__subtext { font-size: 0.6rem; }
  .header.scrolled .header__cta {
    background: var(--color-gold);
    color: var(--color-bg);
  }
  .hamburger { justify-self: end; margin: 0; display: flex; }

  /* Body & Floating UI */
  body { padding-bottom: 0; }
  .hero__scroll { bottom: 120px; }
  .carousel-dots { margin-bottom: 2rem; }
  .whatsapp-float { bottom: 24px; }
  .back-to-top { bottom: 24px; right: 85px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .section-title { font-size: 1.75rem; }
  .step-card, .service-card, .value-card { padding: 1.5rem 1rem; }
  .testimonial__quote { font-size: 1.05rem; }
}

