/* Telegrama 24 Horas — redesign limpo (creme quente + ouro) */
:root {
  --ink: #1c1916;
  --ink-soft: #2a2520;
  --card: #2f2924;
  --white: #ffffff;
  --cream: #faf6f0;
  --cream-deep: #f0e8dc;
  --muted: #6e655c;
  --muted-light: #b5aaa0;
  --line: #e6ddd2;
  --accent: #c4a035;
  --accent-hover: #a88628;
  --gold-soft: #e8d48a;
  --warm-red: #b84a3a;
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --max: 1100px;
  --shadow: 0 16px 48px rgba(60, 40, 30, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  height: clamp(40px, 8vw, 52px);
  width: auto;
  max-width: min(220px, 50vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #3d372f;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--warm-red);
}

.nav .btn-header {
  color: #111;
}

.btn-header {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: #111;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #111;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(196, 160, 53, 0.55);
}

.btn-outline-gold:hover {
  background: rgba(196, 160, 53, 0.12);
  color: var(--gold-soft);
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe57;
  color: #fff;
}

.btn-lg {
  padding: 1.1rem 1.75rem;
  font-size: 1rem;
  width: 100%;
}

/* ——— Hero (full-bleed) ——— */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(88vh, 760px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 28%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 12, 0.35) 0%, transparent 30%),
    linear-gradient(90deg, rgba(28, 18, 12, 0.82) 0%, rgba(28, 18, 12, 0.55) 42%, rgba(28, 18, 12, 0.12) 72%, rgba(28, 18, 12, 0.05) 100%);
}

.hero-content {
  margin-block: auto;
  padding: 5.5rem 0 3.5rem;
  max-width: 40rem;
  animation: rise 0.8s ease both;
}

.hero-kicker {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-brand {
  font-family: var(--font);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0.02em 0.12em;
  z-index: 0;
}

.hl::before {
  content: "";
  position: absolute;
  left: -0.14em;
  right: -0.14em;
  top: -0.12em;
  bottom: -0.02em;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  box-sizing: border-box;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 30rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.hero-link:hover {
  color: var(--gold-soft);
  border-bottom-color: rgba(232, 212, 138, 0.4);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.hero-chip {
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(20, 12, 8, 0.32);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-chip:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.hero-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 12, 8, 0.38);
  backdrop-filter: blur(8px);
  padding: 1.1rem 0;
}

.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
  background: var(--white);
}

.section-dark {
  background: linear-gradient(180deg, #2a2520 0%, #231e1a 100%);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-lead {
  color: var(--muted-light);
}

.section-muted {
  background: #f5f0ea;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}

.section-label {
  display: none;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.section-split.is-reverse {
  direction: rtl;
}

.section-split.is-reverse > * {
  direction: ltr;
}

.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy .section-title {
  margin-bottom: 1rem;
}

.about-copy .section-lead {
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.section-visual {
  min-height: 300px;
  border-radius: var(--radius);
  background: var(--ink);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section-visual.has-image {
  background-image: url("../images/about.jpg");
}

/* ——— Carousel ——— */
.carousel {
  position: relative;
  margin-top: 0.5rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
    padding: 0 0.65rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.proof-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  background: #111;
}

.proof-card.is-flyer img {
  object-fit: contain;
  height: 320px;
  padding: 0.75rem;
  background: #2a2520;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(60, 40, 30, 0.05);
}

.review-text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.review-author {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.proof-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}

.proof-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.proof-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 280px;
  background: #f0f0f0;
  color: var(--muted);
  padding: 2rem;
  text-align: center;
}

.proof-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.proof-placeholder span {
  font-size: 0.9rem;
  max-width: 12rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--accent);
  background: #fafafa;
}

.carousel-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d0d0d0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ——— Services ——— */
.service-materials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.service-material {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0908;
  border: 1px solid rgba(196, 160, 53, 0.22);
  min-height: 420px;
  display: grid;
  place-items: center;
}

.service-material img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  border-color: rgba(196, 160, 53, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 160, 53, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Stats ——— */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— Why list ——— */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  max-width: 640px;
}

.why-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

/* ——— Mission ——— */
.mission-band {
  background: linear-gradient(165deg, #2f2924 0%, #26211c 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

.mission-band .section-title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.mission-quote {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* ——— CTA band ——— */
.band {
  background: linear-gradient(135deg, #3a3028 0%, #2a2520 100%);
  color: var(--white);
  padding: 4rem 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-row .section-title {
  color: var(--white);
  margin: 0;
}

.cta-row p {
  margin: 0.5rem 0 0;
  color: var(--muted-light);
  max-width: 32rem;
}

/* ——— FAQ ——— */
.faq-list {
  display: grid;
  gap: 0;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 650;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--warm-red);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 38rem;
}

/* ——— Page header (inner) ——— */
.page-hero {
  background: linear-gradient(165deg, #2f2924 0%, #26211c 100%);
  color: var(--white);
  padding: 3.75rem 0 2.75rem;
}

.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.page-hero p {
  margin: 0;
  color: var(--muted-light);
}

.legal,
.content-block {
  padding: 3.25rem 0 4.5rem;
}

.legal h2,
.content-block h2 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.legal h2:first-child,
.content-block h2:first-of-type {
  margin-top: 0;
}

.legal ul,
.content-block ul {
  padding-left: 1.2rem;
}

.legal li,
.content-block li {
  margin: 0.35rem 0;
}

.meta-date {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.help-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.help-nav a {
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.15rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-block h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-block p,
.contact-block a {
  margin: 0.35rem 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, #2a2520 0%, #1f1b17 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.75rem 0 2rem;
}

.footer-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 640px;
}

.footer-support .btn {
  gap: 0.65rem;
}

.footer-support svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.9rem;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
}

/* ——— WhatsApp float ——— */
.whatsapp-float {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.06);
  background: #1ebe57;
  color: #fff;
  outline: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float .wa-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 100;
  max-width: min(400px, calc(100vw - 5.5rem));
  background: #2a2520;
  color: var(--white);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: none;
  animation: rise 0.35s ease both;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner a {
  color: var(--gold-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.btn-refuse {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-refuse:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .steps-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .section-split,
  .steps,
  .steps-5,
  .footer-grid,
  .contact-grid,
  .services-grid,
  .service-materials,
  .stats-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(60, 40, 30, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: min(80vh, 640px);
  }

  .hero-content {
    padding: 4rem 0 2.75rem;
  }

  .hero-strip-inner {
    justify-content: flex-start;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row .btn {
    width: 100%;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.5rem;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-bg img {
    object-position: 78% 25%;
  }

  .proof-card {
    min-height: 340px;
  }

  .service-material {
    min-height: 320px;
  }

  .service-material img {
    height: 320px;
  }

  .page-hero {
    padding: 2.75rem 0 2rem;
  }

  .legal,
  .content-block {
    padding: 2.25rem 0 3.5rem;
  }

  .site-footer {
    padding: 2.75rem 0 5.5rem;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .cookie-banner,
  .hero-content,
  .carousel-track {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
