/* ============================================================
   ZAFIRO – Landing Page Styles
   Using CSS custom properties for colors and radios
============================================================ */

/* ──────────────────────────────────────────
   1. CSS Variables
────────────────────────────────────────── */
:root {
    --zafiro-dark: #0f1723;
  --zafiro-dark-2: #172233;
  --zafiro-text: #2b3340;
  --zafiro-muted: #70798b;
  --zafiro-line: rgba(15, 23, 35, 0.08);
  --zafiro-white: #ffffff;
  --zafiro-bg-soft: #f7f8fb;
  --zafiro-accent: #c8a66a;

  --color-navy:       #1a2b4a;
  --color-navy-light: #22375e;
  --color-blue:       #2563eb;
  --color-sky:        #dbeafe;
  --color-sky-soft:   #f0f7ff;
  --color-white:      #ffffff;
  --color-off-white:  #f8fafc;
  --color-text:       #1e293b;
  --color-muted:      #64748b;
  --color-border:     #e2e8f0;
  --color-accent:     #fbbf24;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-navy: 0 8px 32px rgba(26,43,74,.25);

  --transition-base: .25s ease;
  --transition-slow: .45s cubic-bezier(.25,.8,.25,1);

  font-size: 16px;
}

/* ──────────────────────────────────────────
   2. Base / Reset
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ──────────────────────────────────────────
   3. Typography helpers
────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -.02em;
}

.body-text {
  font-size: .975rem;
  line-height: 1.75;
  color: var(--color-muted);
}

/* ──────────────────────────────────────────
   4. Section spacing
────────────────────────────────────────── */
.section-spacing {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 767.98px) {
  .section-spacing {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* ──────────────────────────────────────────
   5. Buttons
────────────────────────────────────────── */

/* Primary dark (navy) */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.btn-primary-dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
  color: var(--color-white);
}

/* CTA (navbar) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
}
.btn-cta .material-icons-round { font-size: 16px; }
.btn-cta:hover {
  background: var(--color-blue);
  transform: translateY(-1px);
  color: var(--color-white);
}

/* Hero button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}
.btn-hero:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
  color: #fff;
}

/* Float CTA (hero card) */
.btn-float-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}
.btn-float-cta .material-icons-round { font-size: 16px; }
.btn-float-cta:hover {
  background: var(--color-sky);
  transform: translateY(-1px);
  color: var(--color-navy);
}

/* Featured section button */
.btn-featured {
  margin: auto;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}
.btn-featured:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
  color: #fff;
}

/* ──────────────────────────────────────────
   6. NAVBAR
────────────────────────────────────────── */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}
.navbar-wrapper.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar { padding: 14px 0; }

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-navy);
}
.logo-icon {
  color: var(--color-blue);
  font-size: 1.1rem;
}
.logo-text {
  letter-spacing: .08em;
  color: var(--color-navy);
}

.navbar-nav .nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}
.navbar-nav .nav-link:hover {
  color: var(--color-blue);
  background: var(--color-sky-soft);
}

.navbar-question {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--color-muted);
  white-space: nowrap;
}

.navbar-toggler {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* Push content below fixed navbar */
body { padding-top: 72px; }

/* ──────────────────────────────────────────
   7. HERO SECTION
────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--color-navy);
}

/* Swiper fills section */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15,25,50,.72) 0%,
    rgba(15,25,50,.35) 55%,
    rgba(15,25,50,.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Hero text content */
.hero-content {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: clamp(80px, 10vw, 120px);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.025em;
  max-width: 560px;
}

/* Swiper pagination dots */
.hero-swiper .swiper-pagination {
  bottom: 28px;
  z-index: 2;
}
.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: background var(--transition-base), width var(--transition-base);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: var(--radius-pill);
}

/* Floating CTA card */
.hero-float-card {
  position: absolute;
  bottom: clamp(0px, 8vw, 0px);
  right: clamp(16px, 5vw, 80px);
  z-index: 3;
  background: var(--color-navy);
  padding: 28px 32px;
  max-width: 300px;
  color: #fff;
  box-shadow: var(--shadow-navy);
}

.float-label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.float-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {

  /* El hero debe seguir siendo "escena" con overlay */
  .hero-section {
    height: 78vh;
    min-height: 520px;
    padding-bottom: 0;
  }

  /* Swiper ocupa todo el alto del hero */
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: 100%;
  }

  /* Overlay full */
  .hero-overlay {
    position: absolute;
    inset: 0;
  }

  /* HERO CONTENT vuelve a superponerse */
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0 16px;
    padding-bottom: 92px; /* deja aire para dots + tarjeta */
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  /* Dots arriba de la tarjeta flotante */
  .hero-swiper .swiper-pagination {
    bottom: 88px;
    z-index: 4;
  }

  /* Tarjeta flotante: que también quede sobre el carrusel */
  .hero-float-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    max-width: none;
    border-radius: var(--radius-lg);
    padding: 18px 18px;
    z-index: 5;
  }
  .hero-swiper .swiper-slide { height: 380px; }
}



/* ──────────────────────────────────────────
   8. ABOUT SECTION
────────────────────────────────────────── */
.about-section { background: var(--color-white); }

.about-img-wrapper {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 460px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-navy);
  min-width: 130px;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.badge-text {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 767.98px) {
  .about-img { height: 300px; }
  .about-badge { bottom: -12px; left: 16px; }
  .about-text-col { padding-top: 40px !important; }
}

/* ──────────────────────────────────────────
   9. BENEFITS SECTION
────────────────────────────────────────── */
.benefits-section { background: var(--color-off-white); }

.benefits-band {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px;
}

.benefit-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,43,74,.2);
}

.benefit-icon-wrap .material-icons-round { font-size: 28px; }

.benefit-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .benefits-band { padding: 32px 20px; }
}

/* ──────────────────────────────────────────
   10. PRODUCTS SECTION
────────────────────────────────────────── */
.products-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: .25;
  pointer-events: none;
  filter: blur(56px);
}
.blob-blue {
  width: 320px;
  height: 320px;
  background: #93c5fd;
  top: -80px;
  right: -60px;
}
.blob-yellow {
  width: 200px;
  height: 200px;
  background: #fde68a;
  bottom: 60px;
  left: -40px;
}

/* Dot pattern via CSS */
.dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .08;
  pointer-events: none;
}

/* Product cards */
.product-card {
  position: relative;
  background: var(--color-off-white);
  padding: 24px 20px 20px;
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26,43,74,.3);
  z-index: 1;
}

.product-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.product-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.4;
}

.product-card-col { padding-top: 20px; } /* space for the number badge */

/* ──────────────────────────────────────────
   11. FEATURED PRODUCT SECTION
────────────────────────────────────────── */
.featured-section {
  background: var(--color-off-white);
}

.featured-card {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow-navy);
}

.featured-img-col {
  position: relative;
  width: clamp(200px, 52%, 580px);
  flex-shrink: 0;
  overflow: hidden;
}

.featured-door-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center;
  transition: transform .6s ease;
}
.featured-card:hover .featured-door-img {
  transform: scale(1.04);
}

.featured-text-col {
  flex: 1;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.featured-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  max-width: 520px;
}

@media (max-width: 767.98px) {
  .featured-card {
    flex-direction: column;
  }
  .featured-img-col {
    width: 100%;
    height: 260px;
  }
  .featured-door-img {
    height: 100%;
  }
}

/* ──────────────────────────────────────────
   12. FOOTER
────────────────────────────────────────── */
.footer-section {
  background: var(--color-navy);
  color: rgba(255,255,255,.8);
  padding-top: 80px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-logo-text {
  letter-spacing: .08em;
  color: #fff;
}

.footer-tagline {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.footer-address {
  font-size: .825rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  transition: background var(--transition-base);
}
.social-link:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.footer-heading {
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: .8375rem;
  color: rgba(255,255,255,.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-base);
}
.footer-links li a:hover { color: #fff; }

.footer-icon {
  font-size: 16px;
  opacity: .7;
}

.footer-top { padding-bottom: 64px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin: 0;
}


.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.inner-hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.inner-hero-bg,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
}

.inner-hero-bg {
  z-index: 1;
}

.inner-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.inner-hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.78) 0%, rgba(8, 13, 22, 0.46) 50%, rgba(8, 13, 22, 0.30) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  color: var(--zafiro-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.inner-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  font-size: .95rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.82);
}

.inner-hero-breadcrumb a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.inner-hero-breadcrumb a:hover {
  color: #fff;
}

.inner-hero-kicker {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.86);
}

.inner-hero-title {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: .95;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 700px;
}

.inner-hero-desc {
  max-width: 680px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 0;
}

.inner-intro-section {
  background: #fff;
}

.inner-intro-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--zafiro-dark);
  margin: 0;
  letter-spacing: -0.03em;
  max-width: 520px;
}

.inner-intro-text p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--zafiro-muted);
  margin: 0;
}

.portfolio-filter-section {
  position: relative;
  background: var(--zafiro-bg-soft);
}

.portfolio-subtitle {
  max-width: 720px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 3rem;
}

.filter-btn {
  border: 1px solid var(--zafiro-line);
  background: #fff;
  color: var(--zafiro-text);
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
  transition: all .25s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background: var(--zafiro-dark);
  color: #fff;
  border-color: var(--zafiro-dark);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--zafiro-dark);
  color: #fff;
  border-color: var(--zafiro-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 35, 0.14);
}

.portfolio-grid {
  min-height: 300px;
}

.portfolio-item-wrap {
  transition: opacity .3s ease, transform .35s ease;
}

.portfolio-item-wrap.is-hidden {
  display: none !important;
}

.portfolio-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.portfolio-card-media {
  position: relative;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.portfolio-card-body {
  padding: 1.25rem 1.2rem 1.35rem;
}

.portfolio-card-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(200, 166, 106, 0.12);
  color: #85663a;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .9rem;
}

.portfolio-card-title {
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--zafiro-dark);
  margin: 0;
}

.inner-cta-section {
  background: #fff;
}

.inner-cta-box {
  background: linear-gradient(135deg, var(--zafiro-dark) 0%, var(--zafiro-dark-2) 100%);
  color: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 50px rgba(10, 20, 35, 0.18);
}

.inner-cta-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: .75rem;
}

.inner-cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
}
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-filters .filter-btn {
  min-height: 46px;
  padding-inline: 1.15rem;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .inner-hero-section {
    min-height: 72vh;
  }

  .inner-hero-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .inner-intro-title {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .inner-hero-section {
    min-height: 65vh;
    padding-top: 84px;
  }

  .portfolio-filters {
    justify-content: flex-start;
  }

  .filter-btn {
    font-size: .9rem;
    padding: .75rem 1rem;
  }

  .inner-cta-box {
    border-radius: 22px;
  }
}