/* ===============================================
   FURSIFEX HOME-2 - Estilos de contenido
   Variables, reset y header/footer vienen del
   componente fursifex-base/style.css
   =============================================== */

/* ===============================================
   HERO SLIDER
   =============================================== */
.fx-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.fx-hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.fx-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.fx-slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fx-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.75) 0%, rgba(13,27,42,.4) 100%);
}
.fx-slide__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--fx-hh);
  gap: 18px;
  max-width: 660px;
  align-items: flex-start;
}
.fx-slide__tag {
  display: inline-block;
  font-family: var(--fx-font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fx-principal);
  background: rgba(61,155,232,.15);
  border: 1px solid rgba(61,155,232,.5);
  padding: 5px 12px;
  border-radius: 30px;
  width: fit-content;
}
.fx-slide__title {
  font-family: var(--fx-font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--fx-white);
  line-height: 1.1;
}

/* Flechas */
.fx-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  color: var(--fx-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fx-t);
  z-index: 10;
}
.fx-hero__arrow:hover { background: var(--fx-principal); }
.fx-hero__arrow--prev { left: 20px; }
.fx-hero__arrow--next { right: 20px; }

/* Dots */
.fx-hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.fx-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: var(--fx-t);
}
.fx-hero__dot--active {
  background: var(--fx-principal);
  transform: scale(1.3);
}

/* ===============================================
   INTRO
   =============================================== */
.fx-intro {
  padding: 80px 0;
  background: var(--fx-white);
}
.fx-intro__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.fx-intro__text p {
  color: var(--fx-text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.fx-intro__text p:last-child { margin-bottom: 0; }
.fx-intro__text strong { color: var(--fx-navy); font-weight: 600; }

.fx-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--fx-border);
  border-radius: var(--fx-r);
  overflow: hidden;
}
.fx-stat {
  background: var(--fx-white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fx-stat__num {
  font-family: var(--fx-font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fx-principal);
  line-height: 1;
}
.fx-stat__label {
  font-size: 0.78rem;
  color: var(--fx-text-muted);
  line-height: 1.3;
}

/* ===============================================
   GALLERY
   =============================================== */
.fx-gallery {
  padding: 80px 0;
  background: var(--fx-off-white);
}
.fx-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.fx-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--fx-r);
  cursor: pointer;
}
.fx-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fx-gallery__item:hover img { transform: scale(1.08); }
.fx-gallery__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(13,27,42,.88));
  color: var(--fx-white);
  font-size: 0.82rem;
  font-family: var(--fx-font-h);
  font-weight: 500;
  opacity: 1;
}
@media (max-width: 600px) {
  .fx-gallery__cap { font-size: 0.92rem; padding: 12px 10px; }
}

/* Lightbox */
.fx-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.fx-lightbox.fx-lb--open { display: flex; }
.fx-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--fx-white);
  font-size: 2rem;
  opacity: .7;
  transition: opacity 0.2s;
}
.fx-lightbox__close:hover { opacity: 1; }
.fx-lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--fx-r);
  object-fit: contain;
}
.fx-lightbox__caption {
  color: rgba(255,255,255,.6);
  font-size: 0.87rem;
  text-align: center;
}
.fx-lightbox__prev,
.fx-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--fx-white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.fx-lightbox__prev { left: 16px; }
.fx-lightbox__next { right: 16px; }
.fx-lightbox__prev:hover,
.fx-lightbox__next:hover { background: rgba(255,255,255,.28); }
@media (max-width: 480px) {
  .fx-lightbox__prev { left: 6px; }
  .fx-lightbox__next { right: 6px; }
  .fx-lightbox__prev,
  .fx-lightbox__next { width: 38px; height: 38px; font-size: 1.5rem; }
}

/* ===============================================
   SERVICES
   =============================================== */
.fx-services {
  padding: 80px 0;
  background: var(--fx-navy);
}
.fx-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fx-svc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--fx-r);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--fx-t);
}
.fx-svc:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  box-shadow: var(--fx-shm);
}
.fx-svc__icon {
  width: 52px;
  height: 52px;
  color: var(--fx-principal);
}
.fx-svc__icon svg { width: 100%; height: 100%; }
.fx-svc__title {
  font-family: var(--fx-font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fx-white);
  line-height: 1.3;
}
.fx-svc__text {
  font-size: 0.86rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  flex: 1;
}
.fx-svc__link {
  font-family: var(--fx-font-h);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fx-principal);
  letter-spacing: 0.02em;
  transition: var(--fx-t);
}
.fx-svc__link:hover { color: var(--fx-principal-light); }

/* ===============================================
   PRODUCT LINES
   =============================================== */
.fx-products {
  padding: 80px 0;
  background: var(--fx-white);
}
.fx-products__lead {
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  max-width: 820px;
}
.fx-products__lead a { color: var(--fx-principal); text-decoration: underline; }
.fx-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fx-prod {
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--fx-t);
}
.fx-prod:hover {
  box-shadow: var(--fx-shm);
  transform: translateY(-4px);
}
.fx-prod__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.fx-prod__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fx-prod:hover .fx-prod__img-wrap img { transform: scale(1.06); }
.fx-prod__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--fx-t);
}
.fx-prod:hover .fx-prod__img-overlay { opacity: 1; }
.fx-prod__img-overlay span {
  font-family: var(--fx-font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fx-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fx-prod__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fx-prod__title {
  font-family: var(--fx-font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fx-navy);
}
.fx-prod__text {
  font-size: 0.85rem;
  color: var(--fx-text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ===============================================
   BANNERS
   =============================================== */
.fx-banners {
  padding: 60px 0;
  background: var(--fx-off-white);
}
.fx-banners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fx-banner {
  border-radius: var(--fx-r);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fx-banner__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.fx-banner__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fx-banner:hover .fx-banner__img-wrap img { transform: scale(1.06); }
.fx-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.35) 0%, rgba(13,27,42,.7) 100%);
}
.fx-banner__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.fx-banner__title {
  font-family: var(--fx-font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fx-white);
  line-height: 1.25;
}

/* ===============================================
   CTA BAND
   =============================================== */
.fx-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 72px 0;
}
.fx-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.82);
}
.fx-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fx-cta__title {
  font-family: var(--fx-font-h);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--fx-white);
  margin-bottom: 8px;
}
.fx-cta__sub {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
}

/* ===============================================
   RECYCLING
   =============================================== */
.fx-recycling {
  padding: 80px 0;
  background: var(--fx-white);
}
.fx-recycling__lead {
  color: var(--fx-text-muted);
  font-size: 0.95rem;
  max-width: 780px;
}
.fx-recycling__lead strong { color: var(--fx-navy); font-weight: 600; }
.fx-recycling__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fx-rec {
  border: 1px solid var(--fx-border);
  border-radius: var(--fx-r);
  overflow: hidden;
  transition: var(--fx-t);
}
.fx-rec:hover {
  box-shadow: var(--fx-shm);
  transform: translateY(-4px);
}
.fx-rec__img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.fx-rec__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fx-rec:hover .fx-rec__img-wrap img { transform: scale(1.06); }
.fx-rec__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fx-rec__title {
  font-family: var(--fx-font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fx-navy);
}
.fx-rec__body p {
  font-size: 0.84rem;
  color: var(--fx-text-muted);
  line-height: 1.65;
}
.fx-rec__link {
  font-family: var(--fx-font-h);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fx-principal);
  transition: var(--fx-t);
}
.fx-rec__link:hover { color: var(--fx-navy); }

/* ===============================================
   ARTICLES BAND
   =============================================== */
.fx-articles {
  background: var(--fx-navy-mid);
  padding: 56px 0;
}
.fx-articles__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fx-articles__sub {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  max-width: 480px;
  margin-top: 8px;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.fx-contact {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.fx-contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 50%, rgba(13,27,42,.75) 100%);
}
.fx-contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}
.fx-contact__steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.fx-contact__steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}
.fx-contact__steps a { color: var(--fx-principal); }
.fx-step-num {
  font-family: var(--fx-font-h);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--fx-principal);
  border: 2px solid var(--fx-principal);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fx-contact__tagline {
  color: rgba(255,255,255,.5);
  font-size: 0.86rem;
  margin-top: 24px;
}
.fx-contact__promise {
  color: var(--fx-principal-light);
  font-family: var(--fx-font-h);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}
.fx-contact__form .wpforms-container input,
.fx-contact__form .wpforms-container textarea,
.fx-contact__form .wpforms-container select {
  background: rgba(255,255,255,.16) !important;
  border: 1.5px solid rgba(255,255,255,.5) !important;
  color: var(--fx-white) !important;
  border-radius: var(--fx-r) !important;
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(4px) !important;
}
.fx-contact__form .wpforms-container input:focus,
.fx-contact__form .wpforms-container textarea:focus {
  background: rgba(255,255,255,.22) !important;
  border-color: var(--fx-principal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(61,155,232,.25) !important;
}
.fx-contact__form .wpforms-container textarea {
  min-height: 130px !important;
  resize: vertical !important;
}
.fx-contact__form .wpforms-container input::placeholder,
.fx-contact__form .wpforms-container textarea::placeholder { color: rgba(255,255,255,.6) !important; }
.fx-contact__form .wpforms-container label { color: rgba(255,255,255,.9) !important; font-size: 0.9rem !important; font-weight: 600 !important; }
.fx-contact__form .wpforms-submit-container button { background: var(--fx-principal) !important; color: var(--fx-white) !important; padding: 14px 32px !important; font-size: 1rem !important; width: 100% !important; }

/* ===============================================
   RESPONSIVE - CONTENIDO
   =============================================== */
@media (max-width: 1024px) {
  .fx-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .fx-services__grid { grid-template-columns: 1fr 1fr; }
  .fx-products__grid { grid-template-columns: 1fr 1fr; }
  .fx-recycling__grid { grid-template-columns: 1fr 1fr; }
  .fx-contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .fx-hero { height: 60vh; min-height: 360px; }
  .fx-hero__arrow { display: none; }
  .fx-slide__content { padding-left: 16px; padding-right: 16px; max-width: 100%;   align-items: flex-start;
}
  .fx-slide__title { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
  .fx-intro { padding: 32px 0; }
  .fx-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .fx-services__grid { grid-template-columns: 1fr; }
  .fx-banners__grid { grid-template-columns: 1fr; }
  .fx-cta__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .fx-intro__stats { grid-template-columns: 1fr 1fr; }
  .fx-products__grid { grid-template-columns: 1fr; }
  .fx-recycling__grid { grid-template-columns: 1fr; }
  .fx-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

