:root {
  --fc-accent: #931212;
  --fc-accent-dark: #6f0d0d;
  --fc-bg: #f4f4f4;
  --fc-ink: #2b2c2d;
  --fc-line: #e5e0dd;

  /* Esquema oscuro real del home de Shopify (header, hero, "Nuestros Servicios") */
  --fc-dark-bg: #000000;
  --fc-dark-fg: #f4f4f4;
  --fc-dark-btn: #990a0a;
  --fc-card-band-bg: #740505;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--fc-bg);
  color: var(--fc-ink);
  font-family: "Century Gothic", Futura, "Avenir Next", Avenir, sans-serif;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 .5rem;
}

a { color: var(--fc-accent); }
img { max-width: 100%; display: block; }

/* ---- Header (esquema oscuro real: fondo negro) ---- */
.fc-header {
  background: var(--fc-dark-bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

.fc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.fc-header-left-cluster {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  flex: 0 0 auto;
}

.fc-header-left { display: flex; align-items: center; flex: 0 0 auto; }

.fc-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.fc-logo img { height: 68px; width: auto; }

.fc-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-nav a {
  color: var(--fc-dark-fg);
  text-decoration: none;
  font-weight: 400;
  font-size: .92rem;
}

.fc-nav a:hover, .fc-nav a.active { text-decoration: underline; text-underline-offset: 5px; }

.fc-header-icons {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  gap: .35rem;
}

.fc-header-icons a {
  color: var(--fc-dark-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  opacity: .9;
  transition: opacity .15s ease, background-color .15s ease;
}

.fc-header-icons a:hover {
  opacity: 1;
  background-color: rgba(244, 244, 244, .08);
}

.fc-header-icons .fc-icon,
.fc-header-icons .fc-icon-cart {
  width: 19px;
  height: 19px;
  display: block;
  shape-rendering: geometricPrecision;
}

.fc-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fc-dark-fg);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .fc-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--fc-dark-bg);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .fc-nav.open { display: flex; }
  .fc-nav a { padding: .9rem 1.5rem; border-top: 1px solid #222; }

  /* Hamburguesa a la izquierda, logo centrado, íconos a la derecha */
  .fc-nav-toggle {
    display: block;
    order: -1;
    flex: 0 0 auto;
  }
  .fc-header-left-cluster {
    flex: 1;
    justify-content: center;
  }
  .fc-header-icons a[aria-label="Mi cuenta"] {
    display: none;
  }
}

/* ---- Hero: foto a todo lo ancho, texto directo sobre la imagen (sin caja oscura) ---- */
.fc-hero {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-color: #2b2c2d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.fc-hero-box {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 1.5rem;
  text-align: center;
}

.fc-hero-box .fc-eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  color: rgba(244, 244, 244, .75);
  font-weight: 400;
  margin-bottom: .75rem;
}

.fc-hero-box h1 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  margin: 0;
  color: var(--fc-dark-fg);
  text-wrap: balance;
}

@media (max-width: 700px) {
  .fc-hero-box { margin-left: 6%; margin-top: 120px; max-width: 88%; }
  .fc-hero-box h1 { font-size: 30px; line-height: 38px; }
}

/* ---- Quote bar ---- */
.fc-quote-bar {
  background: var(--fc-dark-bg);
  color: var(--fc-dark-fg);
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.fc-quote-bar p {
  margin: 0 0 1.25rem;
  font-style: italic;
  opacity: .9;
}

.fc-quote-bar .fc-whatsapp-btn {
  background: var(--fc-dark-btn);
}

.fc-quote-bar .fc-whatsapp-btn:hover {
  background: #b31212;
}

.fc-btn, .fc-quote-bar .fc-whatsapp-btn, .fc-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--fc-accent);
  color: #fff !important;
  padding: .9rem 1.9rem;
  border: none;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1;
}

.fc-btn:hover, .fc-quote-bar .fc-whatsapp-btn:hover, .fc-order-btn:hover {
  background: var(--fc-accent-dark);
}

/* ---- "Nuestros Servicios": fondo negro, título a la izquierda, cuadrícula de tarjetas ---- */
.fc-services-section {
  background: var(--fc-dark-bg);
  padding: 3rem 1.5rem 3.5rem;
}

.fc-services-section .fc-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fc-services-section h2 {
  text-align: left;
  color: var(--fc-dark-fg);
  margin: 0 0 1.75rem;
}

.fc-services-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
}

.fc-service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--fc-card-band-bg);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fc-service-card.fc-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fc-service-card .fc-service-img {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: #333;
}

.fc-service-card .fc-service-label {
  color: #fff !important;
  font-weight: 400;
  padding: .85rem 1rem;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

@media (max-width: 900px) {
  .fc-services-slider { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .fc-services-slider { grid-template-columns: 1fr; gap: 1rem; }
  .fc-service-card .fc-service-img { aspect-ratio: 4 / 3; }
}

/* ---- Product grid ---- */
.fc-products-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}

.fc-products-header h1 { text-align: left; }

.fc-cat-description {
  max-width: 60ch;
  margin: .75rem 0 0;
  text-align: left;
  color: #666;
}

.fc-cat-tabs {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fc-cat-tab {
  background: #fff;
  border: 1px solid var(--fc-line);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--fc-ink);
  cursor: pointer;
  text-decoration: none;
}

.fc-cat-tab.active, .fc-cat-tab:hover {
  background: var(--fc-accent);
  border-color: var(--fc-accent);
  color: #fff;
}

.fc-product-grid {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.fc-product-card {
  background: #fff;
  border: 1px solid var(--fc-line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fc-product-card .fc-product-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}

.fc-product-card .fc-product-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.fc-product-card h3 {
  font-size: 1.02rem;
  margin: 0;
}

.fc-product-card .fc-product-price {
  font-weight: 400;
  color: var(--fc-ink);
  font-family: inherit;
  font-size: 1rem;
}

.fc-product-card .fc-product-price .fc-price-label {
  display: block;
  font-size: .75rem;
  color: #888;
}

.fc-product-card .fc-sold-out {
  display: inline-block;
  background: #eee;
  color: #888;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .2rem .5rem;
  align-self: flex-start;
}

.fc-order-btn { margin-top: auto; justify-content: center; }
.fc-order-btn[disabled] { background: #ccc !important; cursor: not-allowed; }

/* ---- Page hero (contacto / genéricas) ---- */
.fc-page-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}

.fc-page-hero h1 { color: #fff; margin-bottom: .5rem; }
.fc-page-hero p { opacity: .85; margin: 0; }

.fc-contact-wrap {
  max-width: 640px;
  margin: 3rem auto;
  padding: 0 1.5rem 3rem;
  text-align: center;
}

.fc-contact-wrap p { color: #555; }

.fc-policy ol {
  padding-left: 1.3rem;
  color: #444;
}

.fc-policy ol > li {
  margin-bottom: 1.1rem;
}

.fc-policy ol > li > strong {
  color: var(--fc-ink);
}

.fc-policy ul {
  margin: .4rem 0 0;
  padding-left: 1.2rem;
}

.fc-policy ul li {
  margin-bottom: .3rem;
}

/* ---- Elementos compartidos: breadcrumb y botón secundario ---- */
.fc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: #888;
  margin: 0 0 1.25rem;
}

.fc-breadcrumb a { color: #888; text-decoration: none; }
.fc-breadcrumb a:hover { color: var(--fc-accent); }
.fc-breadcrumb [aria-current] { color: var(--fc-ink); }

.fc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.9rem;
  border: 1px solid var(--fc-ink);
  border-radius: 6px;
  color: var(--fc-ink);
  text-decoration: none;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1;
  transition: border-color .15s ease, color .15s ease;
}

.fc-btn-secondary:hover { border-color: var(--fc-accent); color: var(--fc-accent); }

/* ---- Blog ---- */
.fc-blog-grid {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fc-blog-card {
  background: #fff;
  border: 1px solid var(--fc-line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.fc-blog-card-img {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}

.fc-blog-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.fc-blog-card-cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--fc-accent);
}

.fc-blog-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.fc-blog-card-body p {
  color: #666;
  font-size: .9rem;
  margin: 0;
}

.fc-blog-card-meta {
  color: #999;
  font-size: .78rem;
}

.fc-blog-post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
}

.fc-blog-meta {
  color: #888;
  font-size: .85rem;
  margin: 0 0 .5rem;
}

.fc-blog-post h1 {
  max-width: 32ch;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 1.75rem;
}

.fc-blog-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #eee;
  margin-bottom: 2.25rem;
}

.fc-blog-content {
  max-width: 68ch;
  margin: 0 auto 2.5rem;
}

.fc-blog-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.fc-blog-content p { color: #333; margin: 0 0 1.1rem; }

.fc-blog-cta {
  max-width: 68ch;
  margin: 0 auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fc-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
}

.fc-blog-cta p {
  width: 100%;
  margin: 0 0 .25rem;
  color: #555;
}

/* ---- Página de producto individual (editorial) ---- */

.fc-pd-eyebrow {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--fc-accent);
  margin: 0 0 .35rem;
}

/* Hero */
.fc-pd-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 600px;
}

.fc-pd-hero-media {
  background-size: cover;
  background-position: center;
  background-color: #eee;
  min-height: 340px;
}

.fc-pd-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
}

.fc-pd-hero-content h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 .75rem;
  max-width: 18ch;
}

.fc-pd-hero-lead {
  color: #555;
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.fc-pd-price-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  color: #888;
  margin: 0;
}

.fc-pd-price {
  font-size: 1.5rem;
  color: var(--fc-ink);
  margin: .2rem 0 1.75rem;
}

.fc-pd-cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 360px;
  margin-bottom: 2rem;
}

.fc-pd-cta-group .fc-btn,
.fc-pd-cta-group .fc-btn-secondary {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
}

.fc-pd-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.fc-pd-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.fc-pd-benefit svg { width: 24px; height: 24px; color: var(--fc-accent); }
.fc-pd-benefit span { font-size: .76rem; color: #555; line-height: 1.3; }

@media (max-width: 900px) {
  .fc-pd-hero { grid-template-columns: 1fr; min-height: 0; }
  .fc-pd-hero-media { min-height: 320px; }
  .fc-pd-hero-content { padding: 2.25rem 1.5rem; }
  .fc-pd-benefits { grid-template-columns: repeat(2, 1fr); }
}

/* ¿Qué incluye? — checklist + galería */
.fc-pd-includes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.fc-pd-includes h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); max-width: 16ch; margin: .35rem 0 1.25rem; }
.fc-pd-includes-intro { color: #555; margin: 0 0 1.5rem; max-width: 42ch; }

.fc-pd-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.5rem;
}

.fc-pd-checklist li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: #333; }
.fc-pd-checklist svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--fc-accent); margin-top: .15rem; }

.fc-pd-includes-main {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background-color: #eee;
  margin-bottom: .75rem;
  display: block;
}

.fc-pd-includes-thumbs { display: flex; align-items: center; gap: .6rem; }
.fc-pd-includes-thumbs-row { display: flex; gap: .6rem; overflow-x: auto; flex: 1; }

.fc-pd-includes-thumbs-row button {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background-color: #eee;
}

.fc-pd-includes-thumbs-row button.active { border-color: var(--fc-accent); }

.fc-pd-arrow-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--fc-line);
  background: #fff;
  color: var(--fc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.fc-pd-arrow-btn:hover { border-color: var(--fc-accent); color: var(--fc-accent); }
.fc-pd-arrow-btn svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .fc-pd-includes { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
}

@media (max-width: 640px) {
  .fc-pd-includes-thumbs .fc-pd-arrow-btn { display: none; }
}

/* Cronología */
.fc-pd-timeline { background: var(--fc-bg); padding: 4rem 1.5rem; text-align: center; }
.fc-pd-timeline .fc-pd-eyebrow { justify-content: center; }
.fc-pd-timeline h2 { margin: .35rem 0 3rem; }

.fc-pd-timeline-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.fc-pd-timeline-row::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--fc-line);
  z-index: 0;
}

.fc-pd-timeline-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem; }

.fc-pd-timeline-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fc-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
}

.fc-pd-timeline-step svg { width: 20px; height: 20px; color: var(--fc-accent); }
.fc-pd-timeline-step h3 { font-size: .95rem; margin: .15rem 0 0; }
.fc-pd-timeline-step p { font-size: .8rem; color: #666; margin: 0; max-width: 20ch; }

@media (max-width: 900px) {
  .fc-pd-timeline-row { grid-template-columns: 1fr; gap: 2rem; }
  .fc-pd-timeline-row::before { display: none; }
}

/* Experiencias reales + FAQ */
.fc-pd-real-faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.fc-pd-real h2 { margin: .35rem 0 1.5rem; max-width: 14ch; }

.fc-pd-real-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: 1.5rem; }
.fc-pd-real-grid a { display: block; aspect-ratio: 3 / 4; background-size: cover; background-position: center; background-color: #eee; }

.fc-pd-faq h2 { margin: .35rem 0 1.5rem; }

.fc-pd-faq-item { border-top: 1px solid var(--fc-line); padding: 1rem 0; }
.fc-pd-faq-item:last-child { border-bottom: 1px solid var(--fc-line); }

.fc-pd-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .92rem;
  color: var(--fc-ink);
}

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

.fc-pd-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--fc-accent);
  transition: transform .15s ease;
  flex: 0 0 auto;
}

.fc-pd-faq-item[open] summary::after { transform: rotate(45deg); }
.fc-pd-faq-item p { margin: .75rem 0 0; color: #555; font-size: .88rem; }

@media (max-width: 900px) {
  .fc-pd-real-faq { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
}

/* Complementa tu experiencia */
.fc-pd-addons { background: var(--fc-bg); padding: 4rem 1.5rem; text-align: center; }
.fc-pd-addons .fc-pd-eyebrow { justify-content: center; }
.fc-pd-addons h2 { margin: .35rem 0 2.25rem; }

.fc-pd-addons-row-wrap { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: .75rem; }
.fc-pd-addons-row { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x proximity; flex: 1; padding-bottom: .25rem; }

.fc-pd-addon-card { scroll-snap-align: start; flex: 0 0 220px; text-align: left; text-decoration: none; color: inherit; }
.fc-pd-addon-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: #eee; margin-bottom: .75rem; }
.fc-pd-addon-card h3 { font-size: .95rem; margin: 0 0 .25rem; }

@media (max-width: 640px) {
  .fc-pd-addons-row-wrap .fc-pd-arrow-btn { display: none; }
  .fc-pd-addons-row-wrap { gap: 0; }
  .fc-pd-addons-row { padding: 0 1.5rem .25rem; margin: 0 -1.5rem; }
  .fc-pd-addon-card { flex-basis: 72vw; max-width: 260px; }
}
.fc-pd-addon-price { font-size: .82rem; color: #777; margin: 0 0 .4rem; }
.fc-pd-addon-link { font-size: .8rem; color: var(--fc-accent); text-transform: uppercase; letter-spacing: .05em; }

/* Bloque SEO */
.fc-pd-seo { max-width: 720px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.fc-pd-seo h2 { margin: .35rem 0 1.25rem; }
.fc-pd-seo p { color: #444; margin: 0 0 1.1rem; }
.fc-pd-seo a { color: var(--fc-accent); }

/* CTA final */
.fc-pd-final-cta {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #2b2c2d;
}

.fc-pd-final-cta::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.6); }

.fc-pd-final-cta-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; width: 100%; }
.fc-pd-final-cta h2 { color: #fff; margin: 0 0 .5rem; }
.fc-pd-final-cta p { color: rgba(255,255,255,.85); margin: 0 0 1.5rem; max-width: 42ch; }

.fc-related {
  max-width: 1200px;
  margin: 1rem auto 3rem;
  padding: 2.5rem 1.5rem 0;
  border-top: 1px solid var(--fc-line);
}

.fc-related h2 { text-align: center; margin-bottom: 1.75rem; }

/* ---- Footer ---- */
.fc-footer {
  background: var(--fc-dark-bg);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #8a8a8a;
  font-size: .8rem;
}

/* ---- Floating WhatsApp ---- */
.fc-whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.fc-whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 600px) {
  .fc-hero { padding: 3.5rem 1.25rem 3rem; min-height: 360px; }
  .fc-hero-box { margin: 0 auto; }
}
