/* ----------------------------------------------------
   MAFHESA - Estilos de la home (index.html)

   Extraido del <style> embebido el 9-ago-2026. Motivo: se
   re-descargaban 55 KB en cada visita y habia reglas de header,
   footer y logo duplicadas con css/paginas.css, que ya se habian
   desincronizado alguna vez.
   ---------------------------------------------------- */

/* ----------------------------------------------------
     SISTEMA DE DISEÑO & VARIABLES (ACENTO EN LATÓN/ORO VIEJO)
     ---------------------------------------------------- */
:root {
  --color-cream: #faf7f2; /* HSL 38, 44%, 96% */
  --color-black: #121212; /* HSL 0, 0%, 7% */
  --color-copper: #c5a059; /* Latón / Oro viejo de tu logotipo */
  --color-copper-light: #e5c384;
  --color-copper-dark: #98783b;
  --color-charcoal: #252322; /* HSL 20, 4%, 15% */
  --color-charcoal-light: #3d3a39;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-black);
  color: var(--color-cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Barra de scroll en latón (Firefox) */
  scrollbar-color: var(--color-copper) var(--color-black);
  scrollbar-width: thin;
}

body {
  background-color: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-copper);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-copper-light);
}

.mobile-br {
  display: none;
}

/* ----------------------------------------------------
     TIPOGRAFÍA EDITORIAL
     ---------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.8);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------
     CABECERA ALINEADA PERFECTAMENTE AL ANCHO DEL CONTENIDO (8%)
     ---------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.header-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
}

header.scrolled {
  padding: 0.4rem 0;
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

/* Logo de Imagen */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  height: 54px;
  transition: var(--transition-smooth);
  margin-left: -8px;
  overflow: visible;
}

.logo-img {
  height: 110px;
  max-height: none;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -28px;
  margin-bottom: -28px;
  transition: var(--transition-smooth);
}

.brand-logo svg {
  width: 220px;
  height: 52px;
  transition: var(--transition-smooth);
}

header.scrolled .brand-logo {
  height: 44px;
}

header.scrolled .logo-img {
  height: 90px;
  margin-top: -23px;
  margin-bottom: -23px;
}

header.scrolled .menu-toggle span {
  background-color: var(--color-charcoal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-copper);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-copper);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* La página en la que estás, marcada igual que en las interiores */
.nav-links a[aria-current="page"] {
  color: var(--color-copper-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: var(--transition-fast);
}

/* ----------------------------------------------------
     HERO SECTION (VIDEO SCROLL-DRIVEN & FALLBACK CANVAS)
     ---------------------------------------------------- */
#machinery-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
  display: none;
}

#hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: var(--color-black);
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 60% 50%,
    transparent 20%,
    var(--color-black) 85%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8%;
  margin-top: 5rem;
}

.hero-content-inner {
  max-width: 750px;
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--color-cream);
}

.hero-content h1 span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--color-copper);
}

/* "en Madrid" acompaña a la palabra dorada sin competir con ella:
   más pequeño y sin cursiva, para que "Relojería" siga mandando. */
.hero-content h1 .h1-lugar {
  font-style: normal;
  font-size: 0.52em;
  letter-spacing: 0.01em;
  color: rgba(197, 160, 89, 0.85);
}

/* Llamada a la acción del hero: sin ella el visitante lee la
   promesa y no tiene nada que pulsar hasta varias secciones más
   abajo. */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-copper);
  transition: var(--transition-fast);
}

.hero-btn-primary {
  background-color: var(--color-copper);
  color: var(--color-black);
  font-weight: 600;
}

.hero-btn-primary:hover {
  background-color: var(--color-copper-light);
  border-color: var(--color-copper-light);
}

.hero-btn-ghost {
  color: var(--color-copper);
}

.hero-btn-ghost:hover {
  background-color: rgba(197, 160, 89, 0.12);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: rgba(250, 247, 242, 0.7);
  max-width: 550px;
  font-family: var(--font-serif);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--color-copper);
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    var(--color-copper),
    transparent
  );
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ----------------------------------------------------
     BANNER SUTIL DE MARCAS (DEBAJO DEL HERO - MÍNIMAL Y ELEGANTE)
     ---------------------------------------------------- */
#marcas-banner {
  background-color: var(--color-black);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 1.6rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-banner-track {
  display: flex;
  width: max-content;
  animation: scrollBanner 38s linear infinite;
}

.marquee-banner-track:hover {
  animation-play-state: paused;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-banner-group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.75rem;
}

.marquee-banner-item {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.marquee-banner-item:hover {
  color: var(--color-copper-light);
}

.marquee-banner-sep {
  color: var(--color-copper);
  opacity: 0.5;
  font-size: 0.65rem;
}

/* ----------------------------------------------------
     SECCIÓN HISTORIA (REDISENADA: TEXTO CENTRADO EDITORIAL)
     ---------------------------------------------------- */
#historia {
  background-color: var(--color-cream);
  color: var(--color-black);
  padding: 9.5rem 0 8.5rem;
  position: relative;
}

.editorial-centered {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8%;
  text-align: center;
}

.editorial-centered h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 3.5rem;
  text-align: center;
  color: var(--color-black);
}

.editorial-centered h2 span {
  font-style: italic;
  color: var(--color-copper-dark);
}

.centered-story-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.editorial-text-large {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--color-charcoal);
  font-weight: 300;
  text-align: center;
}

.editorial-signature {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-style: italic;
  color: var(--color-copper-dark);
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ----------------------------------------------------
     SECCIÓN BENEFICIOS CON ICONOS MINIMALISTAS (TEMA OSCURO)
     ---------------------------------------------------- */
#beneficios {
  background-color: var(--color-black);
  color: var(--color-cream);
  padding: 8rem 0;
  border-top: 1px solid rgba(250, 247, 242, 0.05);
  border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.8rem;
  background: rgba(250, 247, 242, 0.01);
  border: 1px solid rgba(250, 247, 242, 0.04);
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateY(-5px);
  background: rgba(197, 160, 89, 0.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  color: var(--color-copper);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-cream);
  font-weight: 500;
}

.benefit-item p {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.6;
}

/* ----------------------------------------------------
     GRAN BANNER EDITORIAL DE IMAGEN (ESTILO VACHERON CONSTANTIN)
     ---------------------------------------------------- */
.editorial-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background-color: var(--color-black);
  border-top: 1px solid rgba(250, 247, 242, 0.05);
  border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.banner-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(105%) brightness(55%) sepia(8%);
  transition: var(--transition-smooth);
}

.editorial-banner:hover .banner-image-wrapper img {
  transform: scale(1.02);
  filter: contrast(108%) brightness(65%) sepia(3%);
}

.banner-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.25) 0%,
    rgba(18, 18, 18, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 3;
}

.banner-editorial-content {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-cream);
}

.banner-triangle {
  font-size: 0.8rem;
  color: var(--color-copper);
  margin-bottom: 0.8rem;
  animation: pulseTriangle 3s infinite ease-in-out;
}

@keyframes pulseTriangle {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

.banner-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-copper-light);
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.banner-editorial-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.25;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 2.2rem;
  font-style: italic;
  max-width: 780px;
  text-align: center;
}

.banner-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.banner-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-copper);
  transform: scaleX(0.4);
  transition: var(--transition-smooth);
}

.banner-link:hover {
  color: var(--color-copper-light);
}

.banner-link:hover::after {
  transform: scaleX(1);
}

/* ----------------------------------------------------
     SECCIÓN SERVICIOS (CUADRÍCULA EDITORIAL BEIGE)
     ---------------------------------------------------- */
#servicios {
  background-color: var(--color-cream);
  color: var(--color-black);
  padding: 10rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
}

.services-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8%;
}

.section-header {
  margin-bottom: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* El párrafo de la cabecera no tenía estilo propio y heredaba un color
   que no se leía sobre el fondo claro. */
.section-header p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(18, 18, 18, 0.75);
  max-width: 58ch;
  margin-top: 0.6rem;
}

#servicios h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.25;
  color: var(--color-black);
  margin: 0;
  font-weight: 400;
}

#servicios .label {
  color: var(--color-copper-dark);
  border-color: rgba(197, 160, 89, 0.25);
}

.services-grid-new {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.service-card-new {
  position: relative;
  background-color: var(--color-charcoal);
  overflow: hidden;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 160, 89, 0.12);
}

.service-card-new.large {
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 580px;
}

.service-card-new.small {
  padding: 2rem;
}

.service-card-new img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(55%) contrast(105%) sepia(5%);
  transition: var(--transition-smooth);
}

.service-card-new:hover img {
  transform: scale(1.04);
  filter: brightness(50%) contrast(110%) sepia(0%);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card-new:hover .service-card-overlay {
  background: rgba(18, 18, 18, 0.72);
}

.service-card-content {
  position: relative;
  z-index: 3;
  color: var(--color-cream);
  width: 100%;
}

.service-card-content .card-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.service-card-content h3 {
  line-height: 1.15;
  color: var(--color-cream);
}

.service-card-content p {
  line-height: 1.5;
}

/* Efecto Hover Slide-Up Unificado (Para Tarjeta Grande y Pequeñas) */
.service-card-new h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
  color: var(--color-cream);
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-new.large h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.service-card-new.small h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
}

.service-card-new p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-card-new.large p {
  max-width: 480px;
}

.service-card-new.small p {
  max-width: 250px;
  margin: 0 auto;
}

.service-card-new:hover h3 {
  transform: translateY(-8px);
}

.service-card-new:hover p {
  opacity: 1;
  max-height: 120px;
  transform: translateY(-8px);
}

/* ----------------------------------------------------
     SECCIÓN FORNITURA (BANNER COMPLETO CON VIDEO DE FONDO)
     ---------------------------------------------------- */
#despiece {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 0;
  overflow: hidden;
  background-color: var(--color-black);
  border-top: 1px solid rgba(250, 247, 242, 0.05);
}

.despiece-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.despiece-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(25%) contrast(105%) sepia(3%);
}

.despiece-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.5) 0%,
    rgba(18, 18, 18, 0.85) 100%
  );
  z-index: 2;
}

.despiece-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 0 8%;
}

.despiece-header {
  max-width: 700px;
}

.despiece-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--color-cream);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.despiece-subtitle {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.6;
  margin: 0;
}

.fornitura-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.fornitura-card-new {
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.08);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fornitura-card-new:hover {
  background: rgba(250, 247, 242, 0.07);
  border-color: var(--color-copper);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.fornitura-card-new h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-cream);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.fornitura-card-new p {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.55;
  margin: 0;
  transition: var(--transition-fast);
}

.fornitura-card-new:hover p {
  color: rgba(250, 247, 242, 0.85);
}

/* ----------------------------------------------------
     SECCIÓN DÓNDE ENCONTRARNOS & CONTACTO
     ---------------------------------------------------- */
#contacto {
  background-color: var(--color-black);
  padding: 8.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.contact-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 8%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  margin-bottom: 5rem;
  width: 100%;
}

.map-link {
  color: var(--color-copper);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
  font-weight: 500;
}

.map-link:hover {
  color: var(--color-copper-light);
  transform: translateX(4px);
}

.contact-info h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

/* Apiladas en vertical: con 3 tarjetas en 2 columnas siempre quedaba una
   descolgada. En columna se leen como una ficha de contacto. */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}


.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 3.4rem;
  position: relative;
  min-height: 2.6rem;
}

.info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

/* Icono grande, fuera de la fila del título: hace de ancla visual a la
   izquierda de cada bloque. */
.info-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  color: var(--color-copper);
  stroke-width: 1.2;
}

.info-card h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper);
  font-weight: 600;
  margin: 0;
}

/* Los datos de la ficha (dirección, teléfonos, horario) van en la
   sans: Cormorant tiene números de estilo antiguo y las cifras
   quedan desalineadas. El serif se reserva a títulos y citas. */
.info-card p,
.info-card a {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  /* Un punto por debajo del blanco del título: son datos de apoyo
     y, al ir agrupados, con el mismo color pesaban más que el h2. */
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.info-card a {
  transition: var(--transition-fast);
  display: inline-block;
}

.info-card a[href^="mailto:"] {
  word-break: break-word;
}

/* Aclara a qué corresponde el número, sin competir con él */
.info-nota {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-left: 0.5rem;
  vertical-align: middle;
}

.info-card a:hover {
  color: var(--color-copper-light);
  transform: translateX(3px);
}

/* Mapa Interactivo Google Maps Premium */
/* La columna estiraba el mapa a toda su altura y dejaba la foto aplastada
   abajo. Con la columna en flex y el mapa a altura fija, cada uno ocupa
   lo suyo. */
.contact-map {
  display: flex;
  flex-direction: column;
}

.contact-map .map-wrapper {
  flex: 0 0 auto;
  height: 420px;
  min-height: 0;
}

/* Foto real del local, bajo el mapa. Es la única imagen no generada de la
   web, así que se enseña tal cual (solo corregida de color y encuadre):
   su valor es justo que es auténtica. */
.local-foto {
  margin-top: 1.6rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  overflow: hidden;
}

/* Sin aspect-ratio: la foto se enseña entera. Recortada a 4/3 se perdía
   el escaparate, que es justo lo que demuestra el oficio. */
.local-foto img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.local-foto:hover img {
  transform: scale(1.03);
}

.local-foto figcaption {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.7);
  padding: 0.9rem 1.1rem;
  background: rgba(18, 18, 18, 0.6);
}

.map-wrapper {
  position: relative;
  background-color: var(--color-black);
  border: 1px solid rgba(250, 247, 242, 0.05);
  padding: 0;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 4px;
}

.custom-map-iframe {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  min-height: 300px;
  border: 0;
}

.map-details {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.5);
}

.map-details strong {
  color: var(--color-copper);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ----------------------------------------------------
     SECCIÓN OPINIONES (ESTILO EDITORIAL 2 COLUMNAS BEIGE)
     ---------------------------------------------------- */
#opiniones {
  background-color: var(--color-cream);
  color: var(--color-black);
  padding: 8rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.opiniones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8%;
}

.opiniones-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.opiniones-left .banner-triangle {
  color: var(--color-copper-dark);
  margin-bottom: 0.5rem;
}

.opiniones-left .banner-tag {
  color: var(--color-copper-dark);
  margin-bottom: 1.5rem;
}

.opiniones-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.25;
  color: var(--color-black);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.reviews-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reviews-carousel-wrapper {
  position: relative;
  flex: 1;
  min-height: 180px;
  overflow: hidden;
}

.carousel-arrow {
  background: none;
  border: none;
  color: var(--color-copper-dark);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0 10px;
  line-height: 1;
  opacity: 0.6;
  user-select: none;
}

.carousel-arrow:hover {
  color: var(--color-black);
  opacity: 1;
  transform: scale(1.15);
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.6s ease-in-out,
    transform 0.6s ease-in-out;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.review-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-stars {
  color: #d4af37;
  font-size: 0.9rem;
}

.opiniones-right {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.opiniones-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(102%) brightness(95%);
  transition: var(--transition-smooth);
}

.opiniones-right:hover img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .opiniones-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .opiniones-right {
    height: 380px;
  }
}

/* ----------------------------------------------------
     SECCIÓN BANNER CTA (DEVUELVE EL LATIDO)
     ---------------------------------------------------- */
.cta-banner {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  background-color: var(--color-black);
  border-top: 1px solid rgba(250, 247, 242, 0.05);
  border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.cta-banner-bg {
  position: absolute;
  inset: -80px 0;
  width: 100%;
  height: calc(100% + 160px);
  overflow: hidden;
}

.parallax-wrapper {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.parallax-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%) contrast(105%) grayscale(20%);
  animation: caliberBreathing 20s ease-in-out infinite;
}

@keyframes caliberBreathing {
  0% {
    transform: scale(1.12);
  }
  50% {
    transform: scale(1.22);
  }
  100% {
    transform: scale(1.12);
  }
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    transparent 20%,
    rgba(18, 18, 18, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 3;
}

.cta-banner-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cta-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.55;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.cta-btn.primary {
  background-color: var(--color-copper);
  color: var(--color-black);
  border: 1px solid var(--color-copper);
}

.cta-btn.primary:hover {
  background-color: var(--color-copper-light);
  border-color: var(--color-copper-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.cta-btn.secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(250, 247, 242, 0.3);
}

.cta-btn.secondary:hover {
  background-color: rgba(250, 247, 242, 0.05);
  border-color: var(--color-cream);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------
     FOOTER (PREMIUM MULTICOLUMNA BEIGE)
     ---------------------------------------------------- */
footer {
  background-color: var(--color-cream);
  color: var(--color-black);
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.7fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-copper-dark);
  font-weight: 600;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.6;
}

.footer-logo-container {
  display: block;
  height: 52px;
  overflow: visible;
  margin-left: -8px;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-top: -24px;
  margin-bottom: -24px;
}

.footer-desc {
  max-width: 280px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-copper-dark);
  padding-left: 4px;
}

.footer-phone {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-phone:hover {
  color: var(--color-copper-dark);
}

.footer-hours {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours h3 {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding: 2rem 8% 0;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom p {
  color: rgba(18, 18, 18, 0.55);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(18, 18, 18, 0.45);
  text-decoration: none;
}

/* ----------------------------------------------------
     EFECTOS GENERALES DE APARICIÓN (Intersection Observer)
     ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ----------------------------------------------------
     AVISO DE COOKIES (RGPD COMPLIANT)
     ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 150%);
  width: calc(100% - 4rem);
  max-width: 900px;
  background-color: var(--color-cream);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 1.5rem 2rem;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  display: flex;
  transform: translate(-50%, 0);
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(18, 18, 18, 0.75) !important;
  margin: 0;
}

.cookie-content a {
  color: var(--color-copper);
  text-decoration: none;
  font-weight: 500;
}

.cookie-content a:hover {
  color: var(--color-copper-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.cookie-btn.accept {
  background-color: var(--color-black);
  color: var(--color-cream);
}

.cookie-btn.accept:hover {
  background-color: var(--color-copper);
  color: var(--color-black);
}

.cookie-btn.reject {
  background-color: transparent;
  border-color: rgba(18, 18, 18, 0.2);
  color: var(--color-black);
}

.cookie-btn.reject:hover {
  border-color: var(--color-black);
  background-color: rgba(18, 18, 18, 0.05);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    width: calc(100% - 2rem);
    bottom: 1rem;
    transform: translate(-50%, 150%);
  }
  .cookie-banner.show {
    transform: translate(-50%, 0);
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ----------------------------------------------------
     RESPONSIVE DESIGN (MAQUETACIÓN EDITORIAL ADAPTADA - MOBILE FIRST)
     ---------------------------------------------------- */
@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .editorial-right {
    position: relative;
    top: 0;
  }
  .services-grid-new {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .service-card-new.large {
    grid-column: 1;
    grid-row: auto;
    height: 380px;
  }

  .fornitura-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.6rem 6%;
  }
  .brand-logo {
    height: 48px;
  }
  .logo-img {
    height: 90px;
    max-height: none;
    margin-top: -21px;
    margin-bottom: -21px;
  }

  .hero-cta {
    gap: 0.7rem;
    margin-top: 1.8rem;
  }
  /* El indicador de scroll va en posicion absoluta pegado abajo:
     no reserva espacio y se solapaba con los botones. En movil
     sobra, porque el propio scroll ya se intuye. */
  .scroll-indicator {
    display: none;
  }
  /* svh evita el salto por la barra del navegador movil */
  #hero {
    height: 100svh;
  }
  .hero-content {
    margin-top: 3rem;
  }
  .hero-btn {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1.4rem;
    font-size: 0.78rem;
  }

  .hero-content .label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    max-width: 280px;
  }

  nav {
    display: contents;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 0;
    transition:
      max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      padding 0.4s ease;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    border-left: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  /* Holgado a proposito: al anadir "Inicio" pasaron a ser 6 enlaces y
     con 300px se cortaban los dos ultimos. */
  .nav-links.open {
    max-height: 640px;
    padding: 3rem 0;
  }
  .nav-links a {
    color: var(--color-cream) !important;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }
  .nav-links a:hover {
    color: var(--color-copper-light) !important;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #hero {
    padding: 0 6%;
  }
  #historia {
    padding: 6rem 6% 6rem;
  }
  #servicios {
    padding: 6rem 6%;
  }
  #despiece {
    padding: 6rem 6%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  #marcas-banner {
    padding: 1.2rem 0;
  }
  #contacto {
    padding: 6rem 6% 3rem;
  }
  .info-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 4rem 6% 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .services-container {
    padding: 0;
  }
  .fornitura-grid-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fornitura-card-new {
    padding: 2.5rem 1.5rem;
  }
  .cta-banner {
    height: auto;
    min-height: auto;
  }
  .cta-banner-overlay {
    position: relative;
    padding: 5rem 6%;
    background: rgba(18, 18, 18, 0.7);
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .map-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
  }

  .footer-col ul a {
    padding: 0.5rem 0;
    display: inline-block;
  }
  .service-card-overlay {
    background: rgba(18, 18, 18, 0.78) !important;
  }
  .service-card-new p {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    overflow: visible !important;
    margin-top: 0.5rem !important;
  }
  .service-card-new h3 {
    transform: none !important;
  }
}

/* ----------------------------------------------------
     WIDGET DE WHATSAPP PREMIUM
     ---------------------------------------------------- */
.whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-sans);
  pointer-events: none;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d301b 0%, #061f10 100%);
  border: 1.5px solid var(--color-copper);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-copper);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  position: relative;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-copper);
  opacity: 0.6;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #0f3d24 0%, #0d301b 100%);
  color: var(--color-copper-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--color-copper-light);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-tooltip {
  background-color: var(--color-cream);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  width: 250px;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: auto;
}

.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.whatsapp-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.whatsapp-tooltip-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-copper-dark);
  margin: 0;
}

.whatsapp-tooltip-close {
  background: none;
  border: none;
  color: rgba(18, 18, 18, 0.4);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.whatsapp-tooltip-close:hover {
  color: var(--color-black);
}

.whatsapp-tooltip-text {
  font-size: 0.85rem;
  color: rgba(18, 18, 18, 0.75);
  margin: 0;
  font-weight: 300;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-widget-container {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn {
    width: 54px;
    height: 54px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
  .mobile-br {
    display: inline !important;
  }
}

/* Sección FAQ */
.faq-section {
  background-color: var(--color-cream);
  padding: 6rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.faq-container h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 3rem;
}

.faq-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-copper-light);
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  background-color: #fff;
}

.faq-item summary {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-copper);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-charcoal-light);
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  .faq-item summary {
    font-size: 0.95rem;
  }
}
