:root {
  --color-primary: #d51b1e;
  --color-primary-dark: #ad1215;
  --color-primary-soft: #fff0f0;
  --color-ink: #141414;
  --color-ink-soft: #303030;
  --color-muted: #666d75;
  --color-line: #dfdfdf;
  --color-surface: #f5f3ef;
  --color-white: #ffffff;
  --color-success: #25d366;
  --shadow-soft: 0 24px 60px rgba(18, 18, 18, 0.08);
  --shadow-card: 0 18px 45px rgba(10, 10, 10, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 20px;
}

.section {
  padding: 88px 0;
}

.section-dark {
  background: #171717;
  color: var(--color-white);
}

.section-muted {
  background: var(--color-surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(213, 27, 30, 0.08);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-copy {
  margin: 0;
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-dark .section-heading p,
.section-dark .section-copy,
.section-dark .card p,
.section-dark .faq details p,
.section-dark .footer-copy,
.section-dark .list-muted,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.76);
}

.page-shell {
  padding-top: var(--header-height);
  margin-top: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
  padding-bottom: 30px;
  padding-top: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: min(220px, 42vw);
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 700;
  color: var(--color-ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ef2c2f 100%);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(213, 27, 30, 0.24);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(213, 27, 30, 0.14),
      transparent 32%
    ),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.05), transparent 28%);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 660px;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions,
.chip-list,
.page-hero-actions,
.cta-actions,
.contact-badges,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chip-list {
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--color-ink-soft);
}

.chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card,
.card,
.stat-card,
.feature-tile,
.service-card,
.testimonial-card,
.product-card,
.contact-card,
.faq details {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-card {
  overflow: hidden;
  height: 100%;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  padding-top: 20px;
}

.stat-stack {
  position: absolute;
  right: -8px;
  bottom: 26px;
  display: grid;
  gap: 14px;
  width: min(270px, 65%);
}

.stat-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.stat-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: var(--color-primary-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.stat-card span {
  color: var(--color-muted);
  line-height: 1.55;
}

.metrics {
  position: relative;
  z-index: 1;
  margin-top: -26px;
}

.metrics-grid,
.feature-grid,
.services-grid,
.gallery-grid,
.testimonials-grid,
.product-grid,
.process-grid,
.mini-grid {
  display: grid;
  gap: 20px;
}

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

.metric-card,
.feature-tile,
.testimonial-card,
.contact-card {
  padding: 24px;
}

.metric-card {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.metric-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.metric-card strong {
  font-size: 1.16rem;
}

.metric-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.feature-tile {
  display: grid;
  gap: 14px;
}

.feature-tile strong,
.service-card h3,
.testimonial-card strong,
.product-card h3,
.contact-card strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.feature-tile p,
.service-card p,
.testimonial-card p,
.product-card p,
.contact-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

.service-card,
.product-card {
  overflow: hidden;
}

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

.service-card img,
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-content,
.product-card-content {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--color-primary);
}

.service-link::after {
  content: "->";
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.showcase-card.reverse {
  direction: rtl;
}

.showcase-card.reverse > * {
  direction: ltr;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.showcase-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 40px;
}

.showcase-copy h3,
.cta-card h2,
.page-hero-copy h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.showcase-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.showcase-copy p,
.cta-card p,
.page-hero-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.list-check,
.list-muted {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-check li::before {
  content: "OK";
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.about-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ed 100%);
  box-shadow: var(--shadow-soft);
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.mini-grid .card {
  padding: 22px;
}

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

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.testimonial-card {
  display: grid;
  gap: 14px;
}

.testimonial-card .stars {
  color: var(--color-primary);
  letter-spacing: 0.18em;
  font-size: 0.92rem;
  font-weight: 900;
}

.marquee {
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-white);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track span::before {
  content: "\2022";
  margin-right: 14px;
}

.cta-card {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(213, 27, 30, 0.96), rgba(135, 15, 17, 0.96)),
    url("../wp-content/uploads/2025/11/GRERFRF_11zon-scaled-1.webp")
      center/cover;
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.faq {
  display: grid;
  gap: 18px;
}

.faq details {
  padding: 0 24px;
}

.faq details[open] {
  background: #fff7f7;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.6rem;
  color: var(--color-primary);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0 0 22px;
  color: var(--color-muted);
  line-height: 1.8;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: start;
}

.footer-logo {
  width: min(280px, 100%);
  margin-bottom: 22px;
}

.footer-copy {
  margin: 0;
  max-width: 520px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  gap: 18px;
}

.footer-column h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.footer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-weight: 700;
}

.page-hero {
  padding: 56px 0 72px;
}

.page-hero-grid,
.split-grid.with-media {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.page-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.page-hero-visual,
.media-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.page-hero-visual img,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-weight: 700;
}

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

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

.process-step {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.process-step strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  line-height: 1.72;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: var(--color-success);
  color: var(--color-white);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
  cursor: pointer;
  animation: pulse 1.7s infinite;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
}

.whatsapp-modal.is-open {
  display: flex;
}

.whatsapp-panel {
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.whatsapp-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.whatsapp-panel h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.6rem;
}

.whatsapp-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.whatsapp-options {
  display: grid;
  gap: 12px;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f7f7;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.whatsapp-option:hover,
.whatsapp-option:focus-visible {
  transform: translateY(-1px);
  background: var(--color-primary-soft);
}

.whatsapp-option .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--color-success);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 900;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.48);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .showcase-card,
  .footer-grid,
  .split-grid.with-media {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .product-grid,
  .process-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    min-height: auto;
  }

  .hero-card img,
  .page-hero-visual img,
  .media-card img {
    min-height: 360px;
  }

  .stat-stack {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .metrics-grid,
  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .product-grid,
  .process-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-copy {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 38px;
    padding-bottom: 60px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .showcase-copy,
  .cta-card,
  .about-card,
  .metric-card,
  .feature-tile,
  .service-card-content,
  .product-card-content,
  .testimonial-card,
  .contact-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq details {
    padding: 0 18px;
  }

  .hero-card img,
  .page-hero-visual img,
  .media-card img,
  .showcase-card img {
    min-height: 280px;
  }

  .service-card img,
  .product-card img,
  .gallery-grid img {
    height: 220px;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body.reference-layout {
  background: #ffffff;
}

.reference-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.reference-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(12px);
  padding-bottom: 20px;
}

.reference-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
}

.reference-logo img {
  width: min(220px, 42vw);
  height: auto;
}

.reference-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #cf2027;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 28px rgba(207, 32, 39, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.reference-cta:hover,
.reference-cta:focus-visible,
.reference-button:hover,
.reference-button:focus-visible,
.reference-whatsapp-link:hover,
.reference-whatsapp-link:focus-visible {
  transform: translateY(-2px);
}

.reference-main {
  padding: 34px 0 0;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.reference-card {
  display: grid;
  gap: 18px;
}

.reference-card-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #ececec;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.08);
}

.reference-card-figure img {
  width: 100%;
  height: auto;
}

.reference-card-copy {
  display: grid;
  gap: 14px;
}

.reference-card h1,
.reference-card h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.reference-card p {
  margin: 0;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.72;
}

.reference-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 11px 22px;
  border: 0;
  border-radius: 10px;
  background: #cf2027;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(207, 32, 39, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.reference-footer {
  margin-top: 74px;
  padding: 58px 0;
  background: #050505;
  color: #ffffff;
}

.reference-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr;
  gap: 34px;
  align-items: start;
}

.reference-footer-logo {
  width: min(280px, 100%);
  margin-bottom: 18px;
}

.reference-footer-brand p,
.reference-footer-copy,
.reference-footer p,
.reference-footer a,
.reference-contact-list li {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.reference-footer h3 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.reference-footer-section + .reference-footer-section {
  margin-top: 28px;
}

.reference-contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.reference-contact-actions {
  display: grid;
  gap: 12px;
}

.reference-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease;
}

@media (max-width: 1120px) {
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .reference-header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    gap: 14px;
  }

  .reference-cta,
  .reference-button,
  .reference-whatsapp-link {
    width: 100%;
  }

  .reference-main {
    padding-top: 24px;
  }

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

body.home-reference {
  background: #f2eadf;
}

.home-reference .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.home-reference .brand-copy strong,
.home-reference .site-nav a,
.home-reference .menu-toggle {
  color: #111111;
}

.home-reference .menu-toggle {
  border-color: rgba(18, 18, 18, 0.12);
  background: #ffffff;
}

.home-reference .brand-copy {
  display: none;
}

.home-reference .site-nav a {
  font-size: 0.98rem;
}

.home-reference .hero::before {
  display: none;
}

.home-hero {
  padding-top: 52px;
  padding-bottom: 42px;
  background: #050505;
}

.home-reference .hero-grid {
  align-items: center;
}

.home-reference .hero-copy h1 {
  margin: 0 0 18px;
  max-width: 660px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-reference .hero-copy p {
  margin: 0 0 28px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.65;
}

.home-reference .hero-copy h1 {
  color: #ffffff;
}

.home-reference .hero-actions {
  margin-top: 0;
}

.home-reference .hero-card,
.home-reference .home-about-media,
.home-reference .showcase-card,
.home-reference .feature-tile,
.home-reference .metric-card,
.home-reference .service-card,
.home-reference .testimonial-card,
.home-reference .faq details {
  border-color: rgba(18, 18, 18, 0.08);
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.08);
}

.home-hero-card {
  padding: 0;
  border-radius: 30px;
  background: #f2eadf;
  box-shadow: none;
}

.home-hero-card img {
  width: 100%;
  min-height: 560px;
  object-fit: contain;
}

.home-metrics {
  padding: 18px 0 84px;
  background: #050505;
}

.home-reference .metrics-grid {
  gap: 18px;
}

.home-reference .metric-card {
  justify-items: center;
  text-align: center;
  padding: 26px 18px;
  border-radius: 24px;
  background: #ffffff;
}

.home-reference .metric-card img {
  width: 58px;
  height: 58px;
}

.home-reference .metric-card p {
  display: none;
}

.home-differentials {
  background: #ffffff;
}

.home-differentials .feature-tile {
  background: #f8f4ee;
}

.home-services {
  background: #f2eadf;
}

.home-services .section-heading {
  text-align: center;
  justify-items: center;
}

.home-services .accent {
  color: #cf2027;
}

.home-service-card {
  background: #ffffff;
}

.home-service-card .service-card-content {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.home-service-card p {
  display: none;
}

.home-service-card img {
  height: 360px;
  object-fit: contain;
  background: #ffffff;
}

.home-showcase,
.home-about,
.home-testimonials {
  background: #ffffff;
}

.home-showcase-alt,
.home-gallery {
  background: #f2eadf;
}

.home-showcase-card {
  align-items: center;
  background: #ffffff;
}

.home-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #f7f2eb;
}

.home-about-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 28px;
}

.home-gallery .section-heading {
  text-align: center;
  justify-items: center;
}

.home-testimonials .section-heading {
  text-align: center;
  justify-items: center;
}

.home-reference .testimonial-card {
  background: #ffffff;
}

.home-marquee {
  padding: 0;
  background: #ff0f0f;
  color: #ffffff;
  overflow: hidden;
}

.home-marquee .marquee-track {
  gap: 0;
  min-width: max-content;
  padding: 16px 0;
  animation-duration: 24s;
}

.home-marquee .marquee-track span {
  flex: 0 0 auto;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-marquee .marquee-track span::before {
  content: "•";
  margin-right: 28px;
}

.home-marquee .marquee-track {
  animation: marquee 75s linear infinite !important;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.home-faq {
  padding-bottom: 28px;
  background: #050505;
}

.home-faq .section-heading {
  margin-bottom: 0;
}

.home-faq .faq details {
  background: #1a1a1a;
}

.home-reference .reference-footer {
  margin-top: 0;
  padding-top: 22px;
  padding-bottom: 42px;
  background: #050505;
}

.home-reference .reference-footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.home-reference .reference-footer-section + .reference-footer-section {
  margin-top: 18px;
}

.home-reference .reference-contact-list {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .home-reference .hero-card img {
    min-height: 420px;
  }

  .home-service-card img,
  .home-showcase-card img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .home-reference .brand-copy {
    display: none;
  }

  .home-hero {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .home-reference .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .home-reference .hero-copy p {
    font-size: 1rem;
  }

  .home-reference .hero-card img,
  .home-about-media img,
  .home-showcase-card img,
  .home-service-card img {
    min-height: 260px;
  }

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

.testimonials-marquee {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeTestimonials 70s linear infinite !important;
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* PERFIL */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* TEXTO */
.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ESTRELAS */
.stars {
  color: #f5b301;
  font-size: 0.9rem;
}

@keyframes marqueeTestimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
