/* Elegancy Glass — Redesign */
:root {
  --bg: #faf8f5;
  --bg-elev: #f3efe9;
  --ink: #0e0e0d;
  --ink-soft: #2a2a28;
  --ink-mute: #6b6961;
  --line: #e2ddd3;
  --accent: #25447b;        /* azul Elegancy */
  --accent-deep: #1d3561;
  --accent-soft: rgba(37, 68, 123, 0.15);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

[data-theme="dark"] {
  --bg: #0e0e0d;
  --bg-elev: #181816;
  --ink: #f5f1e8;
  --ink-soft: #d8d3c7;
  --ink-mute: #908a7c;
  --line: #2a2a26;
  --accent-soft: rgba(37, 68, 123, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}
[data-theme="dark"] .brand-logo {
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--accent-deep); color: #fff; }
.nav-cta .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 3px color-mix(in srgb, #25D366 30%, transparent); }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img, .hero-bg .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(0.3) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, transparent 0%, color-mix(in srgb, var(--bg) 75%, transparent) 60%, var(--bg) 90%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy { max-width: 100%; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 12vw, 192px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 36px 0 36px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero h1 .small {
  display: block;
  font-size: 0.4em;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  margin-top: 0.2em;
  font-style: normal;
}
.hero-lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.55;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-deep); color: #fff; }
.btn-primary svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
}
.hero-meta-item .lbl {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero image stack */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-img-main {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
}
.hero-img-main .ph {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-card {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 220px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.hero-img-card .row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.hero-img-card .lbl-mono { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-mute); text-transform: uppercase; }
.hero-img-card .num-big { font-family: var(--serif); font-size: 36px; line-height: 1; letter-spacing: -0.02em; color: var(--accent); }

.hero-corner {
  position: absolute;
  top: -28px; right: -28px;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 20px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { padding: 120px 0 60px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-elev);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--bg);
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 20px;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; }
.testimonial-meta { font-size: 12px; color: var(--ink-mute); font-family: var(--mono); letter-spacing: 0.06em; margin-top: 2px; }
.testimonial-stars { color: var(--accent); letter-spacing: 0.1em; font-size: 12px; margin-left: auto; }
@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-mute);
}
.marquee-item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
.section { padding: 120px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 18px;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 32px 32px 32px;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service:hover { background: var(--bg-elev); }
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-elev);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service:hover .service-img img { transform: scale(1.04); }
.service .num { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.14em; }
.service h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 16px 0 14px;
  line-height: 1.05;
}
.service p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-arrow {
  margin-top: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.service:hover .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
  color: #fff;
}
.service-arrow svg { width: 16px; height: 16px; }
@media (max-width: 880px) {
  .services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .services { grid-template-columns: 1fr; }
}

/* ============ DIFERENCIAIS / WHY ============ */
.why { background: var(--ink); color: var(--bg); padding: 120px 0; }
.why .eyebrow { color: rgba(255,255,255,0.6); }
.why .eyebrow::before { background: var(--accent); }
.why h2 { color: var(--bg); }
.why .section-head p { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.why-cell {
  background: var(--ink);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-cell .big {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-weight: 400;
}
.why-cell h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}
.why-cell p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell .big { font-size: 60px; }
}

/* ============ PROCESSO ============ */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 0.3s;
}
.process-item:first-child { border-top: 1px solid var(--line); }
.process-item:hover { padding-left: 16px; }
.process-num { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.18em; }
.process-content h4 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.process-content p { color: var(--ink-soft); font-size: 15px; max-width: 540px; }
.process-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .process-item { grid-template-columns: 1fr; gap: 8px; }
  .process-content h4 { font-size: 24px; }
}

/* ============ PORTFOLIO ============ */
.portfolio {
  background: var(--bg-elev);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 80px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg);
  cursor: pointer;
}
.gallery-item .ph, .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .ph, .gallery-item:hover img { transform: scale(1.04); }
.gallery-item .ph-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .ph-tag { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 5; grid-row: span 5; }
.g-2 { grid-column: span 4; grid-row: span 3; }
.g-3 { grid-column: span 3; grid-row: span 4; }
.g-4 { grid-column: span 4; grid-row: span 4; }
.g-5 { grid-column: span 3; grid-row: span 3; }
.g-6 { grid-column: span 5; grid-row: span 4; }
.g-7 { grid-column: span 4; grid-row: span 3; }
.g-8 { grid-column: span 3; grid-row: span 3; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .g-1, .g-6 { grid-column: span 6; grid-row: span 4; }
  .g-2, .g-3, .g-4, .g-5, .g-7, .g-8 { grid-column: span 3; grid-row: span 3; }
}

/* ============ COBERTURA ============ */
.cobertura {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cobertura-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.cobertura-list .city {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.cobertura-list .city svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.cobertura-map {
  aspect-ratio: 1;
  background: var(--bg-elev);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) {
  .cobertura { grid-template-columns: 1fr; gap: 40px; }
  .cobertura-list { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  width: 100%;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}
@media (max-width: 540px) {
  .faq-q { font-size: 18px; }
}

/* ============ CONTATO ============ */
.contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contato-info h3 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 32px;
}
.contato-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contato-block:first-of-type { border-top: 1px solid var(--line); }
.contato-block .lbl-mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contato-block .val { font-family: var(--serif); font-size: 22px; }
.contato-block a:hover { color: var(--accent); }

.form {
  background: var(--bg-elev);
  padding: 48px;
  border-radius: 4px;
}
.form h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0 12px;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form button[type="submit"] {
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  padding: 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.form button[type="submit"]:hover { background: var(--accent-deep); color: #fff; }
@media (max-width: 880px) {
  .contato { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 32px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0 32px;
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 720px;
}
.footer-cta h2 em { font-style: italic; color: var(--accent); }
.footer-cta .btn-primary { background: var(--bg); color: var(--ink); }
.footer-cta .btn-primary:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-bottom h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-bottom a, .footer-bottom p {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-brand-block .brand { margin-bottom: 16px; }
.footer-brand-block .brand-logo { height: 80px; }
.footer-brand-block p { max-width: 320px; line-height: 1.6; }
.copy {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .footer-cta { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .copy { flex-direction: column; gap: 12px; }
}

/* ============ FLOATING WHATSAPP ============ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
.fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ Photo placeholder (striped) ============ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--ink) 6%, transparent) 0,
      color-mix(in srgb, var(--ink) 6%, transparent) 1px,
      transparent 1px,
      transparent 14px
    ),
    var(--bg-elev);
  display: grid; place-items: center;
}
.ph-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  max-width: 80%;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* VIDEO */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-elev);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Selection */
::selection { background: var(--accent); color: white; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 32px));
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  animation: cookie-in 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.hidden { display: none; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.80);
}
.cookie-banner-text strong { color: #fff; font-weight: 600; }
.cookie-banner-text a { color: rgba(255,255,255,0.65); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-text a:hover { color: #fff; }
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--accent-deep); }
.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 16px; }
  .cookie-banner-actions { flex-direction: row; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
