/* ========================================
   NOSOTROS.HTML - SPLIT SCREEN HERO
   Optimizado para máxima performance
======================================== */

/* ========================================
   NOSOTROS.CSS - SPLIT HERO SECTION
   ======================================== */

/* === SPLIT HERO === */
.split-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

/* === LADO IZQUIERDO - IMAGEN === */
.split-hero__left {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.split-hero__image-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.split-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateZ(0);
  transition: transform 0.3s ease;
  will-change: transform;
}

.split-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(163, 126, 73, 0.2) 100%
  );
  pointer-events: none;
}

/* === LADO DERECHO - CONTENIDO === */
.split-hero__right {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-negro-principal);
  padding: var(--spacing-lg) var(--spacing-xl);
  contain: layout style paint;
}

.split-hero__content {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* === TÍTULO CON LÍNEAS CONTROLADAS === */
.split-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-md);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Forzar saltos de línea en el título */
.split-hero__title .title-line {
  display: block;
}

.split-hero__text {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-beige-claro);
  margin-bottom: var(--spacing-sm);
}

.split-hero__text strong {
  color: var(--color-dorado-principal);
  font-weight: 600;
}

/* === HIGHLIGHTS === */
.split-hero__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(163, 126, 73, 0.2);
  border-bottom: 1px solid rgba(163, 126, 73, 0.2);
}

.split-hero__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  contain: layout style;
}

.split-hero__highlight svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--color-dorado-principal);
  margin-top: 2px;
}

.split-hero__highlight-content h3 {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-blanco-roto);
  margin-bottom: 2px;
  line-height: 1.3;
}

.split-hero__highlight-content p {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--color-beige-medio);
  line-height: 1.4;
}

/* === CTA BUTTON === */
.split-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 12px 28px;
  background: var(--gradient-dorado);
  color: var(--color-negro-principal);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  border: 2px solid transparent;
  margin-top: var(--spacing-sm);
}

.split-hero__cta svg {
  width: 18px;
  height: 18px;
  fill: var(--color-negro-principal);
  transition: transform 0.3s ease;
  transform: translateZ(0);
}

/* HOVER: Invertir colores */
.split-hero__cta:hover {
  background: transparent;
  color: var(--color-dorado-principal);
  border-color: var(--color-dorado-principal);
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 8px 25px rgba(163, 126, 73, 0.4);
}

.split-hero__cta:hover svg {
  fill: var(--color-dorado-principal);
  transform: translateX(5px) translateZ(0);
}

/* ========================================
   VALORES SECTION - DISEÑO PREMIUM
   Fondo oscuro con contrastes dorados
======================================== */

/* === VALORES CONTAINER === */
/* === VALORES CONTAINER === */
.valores {
  position: relative;
  background: linear-gradient(180deg, var(--color-negro-principal) 0%, var(--color-negro-suave) 100%);
  padding: 15px 0 40px;
  overflow: hidden;
  contain: layout style paint;
}

/* Decoración con líneas doradas */
.valores::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-dorado-principal) 50%, transparent 100%);
  opacity: 0.3;
}

.valores::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(163, 126, 73, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 20s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translate(-50px, 30px) scale(1.1);
    opacity: 0.08;
  }
}

/* === HEADER === */
.valores__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto calc(var(--spacing-2xl) * 1.8);
  position: relative;
  z-index: 2;
  padding-top: var(--spacing-xl);
}

.valores__subtitle {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-dorado-principal);
  margin-bottom: calc(var(--spacing-lg) * 1.5);
  position: relative;
  padding: 0 var(--spacing-xl);
}

/* Líneas decorativas al lado del subtítulo */
.valores__subtitle::before,
.valores__subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-dorado-principal);
}

.valores__subtitle::before {
  left: 0;
}

.valores__subtitle::after {
  right: 0;
}

.valores__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-lg);
  text-rendering: optimizeLegibility;
}

.valores__description {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-beige-medio);
  max-width: 700px;
  margin: 0 auto;
}

/* === GRID DE VALORES === */
.valores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* === VALOR CARD - DISEÑO PREMIUM === */
.valor-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: var(--spacing-2xl) var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(163, 126, 73, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
  will-change: transform, border-color, background;
  contain: layout style paint;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Efecto de brillo al hover */
.valor-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(163, 126, 73, 0.15) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateZ(0);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  pointer-events: none;
}

.valor-card:hover::before {
  opacity: 1;
  animation: shimmer 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Hover effect */
.valor-card:hover {
  transform: translateY(-12px) translateZ(0);
  border-color: var(--color-dorado-principal);
  background: rgba(163, 126, 73, 0.08);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(163, 126, 73, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.valor-card:hover .valor-card__icon-container {
  transform: scale(1.15) translateZ(0);
}

.valor-card:hover .valor-card__icon {
  transform: rotateY(360deg) scale(1.1) translateZ(0);
  filter: drop-shadow(0 4px 12px rgba(163, 126, 73, 0.6));
}

.valor-card:hover .valor-card__icon-bg {
  transform: scale(1.4) translateZ(0);
  opacity: 0.3;
}

/* === ÍCONO === */
.valor-card__icon-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
}

.valor-card__icon {
  width: 44px;
  height: 44px;
  fill: var(--color-dorado-principal);
  position: relative;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
  filter: drop-shadow(0 2px 8px rgba(163, 126, 73, 0.4));
}

.valor-card__icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 90px;
  height: 90px;
  background: var(--gradient-dorado);
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

/* Anillo dorado alrededor del ícono */
.valor-card__icon-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(163, 126, 73, 0.2);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.valor-card:hover .valor-card__icon-container::after {
  width: 110px;
  height: 110px;
  border-color: var(--color-dorado-principal);
  box-shadow: 0 0 20px rgba(163, 126, 73, 0.3);
}

/* === TEXTOS === */
.valor-card__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.valor-card:hover .valor-card__title {
  color: var(--color-dorado-principal);
}

.valor-card__text {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-beige-claro);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.valor-card:hover .valor-card__text {
  color: var(--color-blanco-roto);
}

/* Prevenir layout shifts */
.valor-card * {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TIMELINE CONTAINER === */
.timeline {
  position: relative;
  background: linear-gradient(180deg, var(--color-negro-suave) 0%, var(--color-negro-principal) 100%);
  padding: calc(var(--spacing-section) * 2.5) 0 calc(var(--spacing-section) * 2);
  overflow: hidden;
}

/* Decoración superior */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-dorado-principal) 50%, transparent 100%);
  opacity: 0.3;
}

/* Decoración de fondo con brillo */
.timeline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(163, 126, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* === HEADER === */
.timeline__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto calc(var(--spacing-2xl) * 1.2);
  position: relative;
  z-index: 2;
  padding-top: var(--spacing-2xl);
}

.timeline__subtitle {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-dorado-principal);
  margin-bottom: calc(var(--spacing-lg) * 1.5);
  position: relative;
  padding: 0 var(--spacing-xl);
}

.timeline__subtitle::before,
.timeline__subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--color-dorado-principal);
}

.timeline__subtitle::before {
  left: 0;
}

.timeline__subtitle::after {
  right: 0;
}

.timeline__title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-lg);
}

.timeline__description {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-beige-medio);
}

/* === TIMELINE WRAPPER === */
.timeline__wrapper {
  position: relative;
  margin-top: calc(var(--spacing-2xl) * 1.2);
  padding: 0 80px;
}

/* === LÍNEA CENTRAL MEJORADA === */
.timeline__line {
  position: absolute;
  top: 70px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: rgba(163, 126, 73, 0.15);
  overflow: hidden;
  border-radius: 2px;
}

.timeline__line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-dorado);
  box-shadow: 0 0 20px rgba(163, 126, 73, 0.6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* === TIMELINE TRACK === */
.timeline__track {
  display: flex;
  gap: var(--spacing-xl);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
}

.timeline__track::-webkit-scrollbar {
  display: none;
}

/* === TIMELINE ITEM (SIN FECHA) === */
.timeline-item {
  position: relative;
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* === DOT === */
.timeline-item__dot {
  position: relative;
  width: 28px;
  height: 28px;
  margin-bottom: var(--spacing-lg);
  z-index: 3;
}

.timeline-item__dot-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--gradient-dorado);
  border-radius: 50%;
  border: 4px solid var(--color-negro-principal);
  box-shadow: 
    0 0 0 3px rgba(163, 126, 73, 0.2),
    0 0 20px rgba(163, 126, 73, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item__dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--color-dorado-principal);
  border-radius: 50%;
  opacity: 0;
  animation: pulseDot 3s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.4;
  }
}

/* === CONTENT CARD (SIN FECHA) === */
.timeline-item__content {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(163, 126, 73, 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Brillo decorativo */
.timeline-item__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(163, 126, 73, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

/* Hover effect premium */
.timeline-item__content:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.7),
    0 0 0 2px rgba(163, 126, 73, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--color-dorado-principal);
  background: rgba(26, 26, 26, 0.95);
}

.timeline-item__content:hover::before {
  left: 100%;
}

.timeline-item__content:hover .timeline-item__icon {
  transform: scale(1.15) rotate(10deg);
  background: var(--gradient-dorado);
  box-shadow: 0 0 25px rgba(163, 126, 73, 0.5);
}

.timeline-item__content:hover .timeline-item__icon svg {
  fill: var(--color-negro-principal);
}

.timeline-item__content:hover .timeline-item__dot-inner {
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 
    0 0 0 5px rgba(163, 126, 73, 0.3),
    0 0 25px rgba(163, 126, 73, 0.6);
}

/* === TITLE === */
.timeline-item__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4a574 0%, var(--color-dorado-principal) 50%, #f4d4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* === TEXT === */
.timeline-item__text {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-beige-claro);
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

/* === ICON === */
.timeline-item__icon {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  width: 50px;
  height: 50px;
  background: rgba(163, 126, 73, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(163, 126, 73, 0.3);
}

.timeline-item__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dorado-principal);
  transition: fill 0.3s ease;
}

/* === NAVIGATION ARROWS === */
.timeline__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-dorado-principal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.timeline__nav svg {
  width: 24px;
  height: 24px;
  fill: var(--color-dorado-principal);
  transition: all 0.3s ease;
}

.timeline__nav:hover {
  background: var(--gradient-dorado);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(163, 126, 73, 0.5);
  border-color: transparent;
}

.timeline__nav:hover svg {
  fill: var(--color-negro-principal);
  transform: scale(1.1);
}

.timeline__nav--prev {
  left: 10px;
}

.timeline__nav--next {
  right: 10px;
}

.timeline__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
/* ========================================
   TEAM SECTION - CONOCÉ A MAXIMILIANO
   Diseño oscuro elegante con border dorado
======================================== */

/* === TEAM CONTAINER === */
.team {
  position: relative;
  background: linear-gradient(180deg, var(--color-negro-principal) 0%, var(--color-negro-suave) 100%);
  padding: 120px 0;
  overflow: hidden;
}

/* Decoración de fondo */
.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-dorado-principal) 50%, transparent 100%);
  opacity: 0.3;
}

.team::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(163, 126, 73, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* === CONTENT LAYOUT === */
.team__content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: calc(var(--spacing-2xl) * 2);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* === IMAGEN CON BORDER DORADO === */
.team__image-wrapper {
  position: relative;
  z-index: 2;
}

.team__image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Border dorado sólido de 4px */
  border: 4px solid var(--color-dorado-principal);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(163, 126, 73, 0.3);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: grayscale(20%);
}

.team__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(163, 126, 73, 0.2) 0%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Hover effects con animación */
.team__image-container:hover {
  transform: translateY(-10px);
  border-color: #d4a574;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(163, 126, 73, 0.5);
}

.team__image-container:hover .team__image {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.team__image-container:hover .team__image-overlay {
  opacity: 0.7;
}

.team__image-container:hover .team__image-frame {
  opacity: 1;
  top: -20px;
  right: -20px;
}

/* Frame dorado exterior animado */
.team__image-frame {
  position: absolute;
  top: -15px;
  right: -15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid rgba(163, 126, 73, 0.6);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === TEXTO === */
.team__text {
  position: relative;
  z-index: 2;
}

.team__subtitle {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-dorado-principal);
  margin-bottom: var(--spacing-md);
}

.team__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-lg);
}

.team__description {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-beige-claro);
  margin-bottom: var(--spacing-lg);
}

/* === QUOTE CON ANIMACIÓN === */
.team__quote {
  position: relative;
  background: rgba(163, 126, 73, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-left: 4px solid var(--color-dorado-principal);
  border-radius: var(--radius-md);
  margin: var(--spacing-2xl) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.team__quote:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(163, 126, 73, 0.3);
}

.team__quote-icon {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  fill: var(--color-dorado-principal);
  opacity: 0.2;
}

.team__quote-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-xl);
}

.team__quote-author {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dorado-principal);
  padding-left: var(--spacing-xl);
}

/* ========================================
   CTA FINAL - SIN PARALLAX
   Diseño impactante para conversión
======================================== */

/* === CTA CONTAINER === */
.cta-final {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background estático (sin parallax) */
.cta-final__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.98) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-final__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(26, 26, 26, 0.88) 100%
  );
}

/* === CONTENT === */
.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 0;
}

.cta-final__subtitle {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-dorado-principal);
  margin-bottom: var(--spacing-lg);
}

.cta-final__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blanco-roto);
  margin-bottom: var(--spacing-lg);
}

.cta-final__text {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-beige-claro);
  margin-bottom: calc(var(--spacing-2xl) * 1.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.cta-final__buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 18px 36px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-final__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

/* Primary button */
.cta-final__btn--primary {
  background: var(--gradient-dorado);
  color: var(--color-negro-principal);
  border: 2px solid transparent;
}

.cta-final__btn--primary svg {
  fill: var(--color-negro-principal);
}

.cta-final__btn--primary:hover {
  background: transparent;
  color: var(--color-dorado-principal);
  border-color: var(--color-dorado-principal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 126, 73, 0.4);
}

.cta-final__btn--primary:hover svg {
  fill: var(--color-dorado-principal);
  transform: translateX(5px);
}

/* WhatsApp button - CORREGIDO */
.cta-final__btn--whatsapp {
  background: #25D366;
  color: var(--color-negro-principal);
  border: 2px solid transparent;
}

.cta-final__btn--whatsapp svg {
  fill: var(--color-negro-principal);
}

.cta-final__btn--whatsapp:hover {
  background: #128C7E;
  color: var(--color-negro-principal);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-final__btn--whatsapp:hover svg {
  fill: var(--color-negro-principal);
}

/* === INFO === */
.cta-final__info {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final__info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--color-beige-medio);
}

.cta-final__info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-dorado-principal);
}