/* ==========================================
   CENTRO DE ORO - Styles
   ========================================== */

/* CSS Variables */
:root {
  --color-gold: #d4a853;
  --color-gold-light: #e8c97a;
  --color-gold-dark: #b8923f;
  --color-silver: #c0c0c0;
  --color-navy: #1a1a2e;
  --color-navy-light: #2d2d44;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-500: #6c757d;
  --color-gray-700: #495057;
  --color-gray-900: #212529;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shimmer Effect for Gold and Silver */
.gold {
  color: var(--color-gold);
  background: linear-gradient(
    120deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 25%,
    #fff5cc 50%,
    var(--color-gold-light) 75%,
    var(--color-gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

.silver {
  color: var(--color-silver);
  background: linear-gradient(
    120deg,
    var(--color-silver) 0%,
    #e8e8e8 25%,
    #ffffff 50%,
    #e8e8e8 75%,
    var(--color-silver) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title--center {
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  margin-top: 0.75rem;
}

.section-title--center::after {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Ripple effect container */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 168, 83, 0.3);
}

.btn--primary .ripple {
  background: rgba(26, 26, 46, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn--submit {
  background: #e74c3c;
  color: var(--color-white);
  border-color: #e74c3c;
  width: 100%;
  padding: 14px 32px;
}

.btn--submit:hover {
  background: #c0392b;
  border-color: #c0392b;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.logo__icon {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
}

.img-logo {
  height: 100%;
  width: auto;
  border-radius: 4px;
}

.logo__text {
  display: none; /* Text is now embedded in the logo image */
}

/* Navigation */
.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 20px;
}

.nav__link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-gold);
}

/* Mobile Menu Button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION WITH CAROUSEL
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-navy);
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Carousel Container */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.carousel__slide.active {
  opacity: 1;
}

/* Individual slide backgrounds */
.carousel__slide--1 {
  background-image: url("images/HEADER PICS/joyas-oro.jpg");
}

.carousel__slide--2 {
  background-image: url("images/HEADER PICS/JOYAS.jpg");
}

.carousel__slide--3 {
  background-image: url("images/HEADER PICS/REVISION DE JOYAS.jpg");
}

/* Progress bar at top */
.carousel__progress {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress__bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  width: 0%;
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Indicators */
.carousel__indicators {
  position: absolute;
  bottom: 138px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel__controls {
  position: absolute;
  inset: 50% 26px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  z-index: 11;
  pointer-events: none;
}

.carousel__control {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 11, 24, 0.34);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--transition-normal),
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.carousel__control:hover,
.carousel__control:focus-visible {
  transform: scale(1.06);
  background: rgba(212, 168, 83, 0.22);
  border-color: rgba(232, 201, 122, 0.8);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.carousel__control:focus-visible {
  outline: 2px solid rgba(232, 201, 122, 0.85);
  outline-offset: 3px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.indicator.active::before,
.indicator:hover::before {
  transform: scale(1);
}

.indicator.active {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(26, 26, 46, 0.5) 50%,
    rgba(26, 26, 46, 0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.hero__title {
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  opacity: 0;
}

.carousel__slide.active .hero__title-line {
  animation: titleSpread 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero__title-highlight {
  font-size: clamp(2.4rem, 10vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(to right, #d4a853, #f7df86, #c69439);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  opacity: 0;
}

.carousel__slide.active .hero__title-highlight {
  animation: revealTitle 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.hero__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.decoration-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.decoration-line:last-child {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.hero__cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-gold);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero__cta-bar p {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-navy);
}

.hero__cta-bar .btn {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.hero__cta-bar .btn:hover {
  background: transparent;
  color: var(--color-navy);
}

/* ==========================================
   NOSOTROS SECTION
   ========================================== */
.nosotros {
  padding: 60px 0 80px;
  background: var(--color-white);
}

.nosotros__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.nosotros__content {
  background: #e3e3e3;
  padding: 34px 30px 0 30px;
  border-radius: 4px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.nosotros .section-title {
  margin-bottom: 16px;
  color: #22365a;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.nosotros .section-title::after {
  display: none;
}

.nosotros__text {
  margin-bottom: 0;
}

.nosotros__text p {
  margin-bottom: 1rem;
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.68;
  text-align: justify;
}

.nosotros__text strong {
  color: #22365a;
  font-weight: 700;
}

.nosotros__contact {
  background: var(--color-navy);
  padding: 20px 26px;
  margin-top: auto;
  margin-left: -30px;
  margin-right: -30px;
  border-radius: 0 0 4px 4px;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
}

.contact-link:hover {
  color: var(--color-gold);
}

.contact-link .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nosotros__image {
  position: relative;
  min-height: 420px;
}

.image-frame {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.image-frame::before {
  display: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* ==========================================
   CERTIFICACIONES
   ========================================== */
.certificaciones {
  padding: 60px 0;
  background: var(--color-gray-100);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.certificaciones__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gray-500);
  margin-bottom: 2rem;
}

.certificaciones__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cert-item {
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.cert-item:hover {
  opacity: 1;
}

.cert-logo {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.cert-item:hover .cert-logo {
  filter: grayscale(0%);
}

/* ==========================================
   SERVICIOS SECTION
   ========================================== */
.servicios {
  position: relative;
  padding: 120px 0 80px;
  background-image: url("images/SERVICIOS PICS/SERVICIOS FONDO.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
}

.servicios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.servicios .section-title {
  color: var(--color-white);
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.servicios .section-title::after {
  display: none;
}

.servicios .container {
  position: relative;
  z-index: 1;
}

.servicios__intro {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio-card {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: left;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

/* Glow effect on hover */
.servicio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 168, 83, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.servicio-card:hover::before {
  opacity: 1;
}

.servicio-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 168, 83, 0.3);
}

.servicio-card--featured {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.servicio-card--featured::before {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 168, 83, 0.25) 0%,
    transparent 60%
  );
}

.servicio-card--featured:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(212, 168, 83, 0.3), var(--shadow-lg);
}

.servicio-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: var(--color-gold);
  transition: transform var(--transition-normal);
}

.servicio-card:hover .servicio-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.servicio-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-white);
}

.servicio-card__title span {
  font-weight: 400;
  font-size: 1rem;
}

.servicio-card__list {
  text-align: left;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.servicio-card--featured .servicio-card__list {
  color: rgba(255, 255, 255, 0.9);
}

.servicio-card__list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.servicio-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
}

/* Divider under second title to mimic reference */
.servicios__grid .servicio-card:nth-child(2) .servicio-card__title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.servicios__grid .servicio-card:nth-child(2) .servicio-card__title::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  position: relative;
  padding: 70px 0;
  background: var(--color-navy);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: transparent;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* ==========================================
   PROCEDIMIENTO SECTION
   ========================================== */
.procedimiento {
  position: relative;
  padding: 110px 0 90px;
  background-image: url("images/PROCEDIMIENTO PIC/PROCEDIMIENTO.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.procedimiento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.procedimiento .container {
  position: relative;
  z-index: 1;
}

.procedimiento .section-title {
  color: var(--color-white);
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}

.procedimiento .section-title::after {
  display: none;
}

.procedimiento__intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.procedimiento__steps-new {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-line {
  text-align: center;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-line:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 20px 40px rgba(212, 168, 83, 0.15);
  border-color: rgba(212, 168, 83, 0.3);
}

.step-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.65rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

/* Keep old styles for backwards compatibility */
.procedimiento__steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Background line (gray) */
.procedimiento__steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* Animated progress line (gold) */
.procedimiento__steps::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease-out;
}

.procedimiento__steps.animate-line::after {
  transform: scaleY(var(--line-progress, 0));
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

.step__number {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.step.active .step__number {
  background: var(--color-gold);
  transform: scale(1.1);
}

/* Pulse effect when step becomes active */
.step.active .step__number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  animation: stepPulse 0.6s ease-out;
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.step.active .step__content h3 {
  color: var(--color-gold);
}

/* ==========================================
   TESTIMONIOS SECTION
   ========================================== */
.testimonios {
  padding: 80px 0;
  background: var(--color-white);
}

.testimonios__header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonios__header p {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  margin-bottom: 10px;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

.instagram-handle:hover {
  color: var(--color-gold);
}

.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonio-card {
  background: var(--color-gray-100);
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

.testimonio-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonio-card__content {
  margin-bottom: 20px;
}

.testimonio-card__content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  font-style: italic;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-final {
  padding: 50px 0;
  background: var(--color-gold);
}

.cta-final__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-final__content p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.cta-final .btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.cta-final .btn--primary:hover {
  background: transparent;
  color: var(--color-navy);
}

/* ==========================================
   CONTACTO SECTION
   ========================================== */
.contacto {
  padding: 100px 0 60px;
  background: var(--color-white);
}

.contacto__info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  text-align: center;
  padding: 30px;
  background: var(--color-gray-100);
  border-radius: 8px;
}

.info-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  margin-bottom: 15px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.info-card small {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.info-card a {
  color: var(--color-navy);
}

.info-card a:hover {
  color: var(--color-gold);
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contacto__form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-gray-600);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contacto__map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}

.contacto__map iframe {
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.logo--footer {
  margin-bottom: 20px;
}

.logo__text-group {
  display: flex;
  flex-direction: column;
}

.logo__tagline {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-top: 2px;
}

.footer__slogan {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  font-style: italic;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-navy-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Pulse animation for WhatsApp */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 0.5s;
}

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

/* ==========================================
   CUMPLIMIENTO SECTION
   ========================================== */
.cumplimiento {
  background: var(--color-white);
  padding-bottom: 80px;
}

.cumplimiento__hero {
  position: relative;
  height: 350px;
  background-image: url("images/HEADER PICS/REVISION DE JOYAS.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cumplimiento__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cumplimiento__title {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.cumplimiento__title span {
  font-weight: 700;
}

.cumplimiento__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 0;
  color: var(--color-gray-900);
}

.cumplimiento__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
  color: var(--color-navy);
  text-align: center;
  text-transform: uppercase;
}

.cumplimiento__content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--color-navy);
  text-transform: uppercase;
}

.cumplimiento__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--color-gray-700);
  text-align: justify;
}

.cumplimiento__content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 24px;
}

.cumplimiento__content li {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 8px;
  line-height: 1.6;
}

.cumplimiento__content strong {
  color: var(--color-navy);
  font-weight: 700;
}

.cumplimiento__footer-note {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold-dark);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

/* Staggered animations */
.servicio-card:nth-child(1) {
  animation-delay: 0.1s;
}
.servicio-card:nth-child(2) {
  animation-delay: 0.2s;
}
.servicio-card:nth-child(3) {
  animation-delay: 0.3s;
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}
.step:nth-child(2) {
  animation-delay: 0.2s;
}
.step:nth-child(3) {
  animation-delay: 0.3s;
}
.step:nth-child(4) {
  animation-delay: 0.4s;
}
.step:nth-child(5) {
  animation-delay: 0.5s;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .nosotros__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nosotros__image {
    order: -1;
    min-height: 340px;
  }

  .nosotros__content {
    min-height: unset;
  }

  .nosotros__contact {
    margin-left: -22px;
    margin-right: -22px;
    padding: 20px 24px;
  }

  .image-frame img {
    height: 360px;
  }

  .servicios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicio-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonios__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .procedimiento {
    background-attachment: scroll;
  }

  .procedimiento__steps-new {
    gap: 12px;
  }

  .step-line {
    padding: 16px 18px;
  }

  .contacto__info-grid {
    grid-template-columns: 1fr;
  }

  .contacto__grid {
    grid-template-columns: 1fr;
  }

  .contacto__map {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-navy-light);
  }

  .header__menu-btn {
    display: flex;
  }

  .hero__cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
  }

  .servicios__grid {
    grid-template-columns: 1fr;
  }

  .servicio-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .cta-banner__content,
  .cta-final__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .procedimiento__steps::before {
    left: 25px;
  }

  .step__number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }

  .footer__social {
    justify-content: center;
  }

  .logo--footer {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero__title-line {
    font-size: 1.25rem;
  }

  .hero__title-highlight {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .servicio-card {
    padding: 30px 20px;
  }

  .step {
    gap: 20px;
  }

  .step__content h3 {
    font-size: 1rem;
  }
}

/* Scroll animations - elements start hidden */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ==========================================
   PDF REFRESH
   ========================================== */
.header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(12, 24, 48, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.logo {
  color: var(--color-navy);
}

.logo__icon {
  height: 42px;
}

.nav__link {
  color: var(--color-navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav__list {
  gap: 34px;
}

.header__menu-btn span {
  background: var(--color-navy);
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 42px);
  justify-content: space-between;
}

.hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(14, 21, 40, 0.8) 0%,
    rgba(14, 21, 40, 0.38) 45%,
    rgba(14, 21, 40, 0.58) 100%
  );
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 132px;
  padding-bottom: 150px;
}

.hero__content {
  padding: 0;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero__title {
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.hero__title-line {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: 0.15em;
}

.hero__title-highlight {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.hero__decoration {
  justify-content: center;
  opacity: 0;
}

.carousel__slide.active .hero__decoration {
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealTitle {
  0% {
    opacity: 0;
    transform: translateY(100%);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes titleSpread {
  from {
    letter-spacing: 0.5em;
    opacity: 0;
  }
  to {
    letter-spacing: 0.1em;
    opacity: 1;
  }
}


.hero__cta-bar {
  z-index: 2;
  min-height: 82px;
  background: linear-gradient(90deg, #e6bd63 0%, #f7df86 50%, #c69439 100%);
  padding: 18px 24px;
}

.hero__cta-bar p {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.hero__cta-bar .btn {
  min-width: 190px;
  border-radius: 999px;
}

.nosotros {
  padding: 52px 0 72px;
}

.nosotros__grid {
  gap: 22px;
}

.nosotros__content {
  padding: 30px 26px 0;
}

.nosotros__text p {
  font-size: 0.88rem;
}

.nosotros__contact {
  padding: 18px 24px;
  margin-left: -26px;
  margin-right: -26px;
}

.servicios {
  padding: 86px 0 0;
}

.servicios__grid {
  max-width: 930px;
  gap: 24px;
}

.servicio-card {
  padding: 28px 26px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.58);
}

.servicio-card__title {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.servicio-card__list {
  font-size: 0.88rem;
}

.cta-banner {
  padding: 30px 0;
  background: #203663;
}

.cta-banner__content {
  gap: 28px;
}

.cta-banner__text {
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.03em;
}

.btn--outline {
  background: var(--color-white);
  color: #203663;
  border-color: var(--color-white);
  border-radius: 999px;
  min-width: 200px;
}

.btn--outline:hover {
  background: #dfe3ea;
  color: #203663;
}

.servicios-highlight {
  padding: 28px 0 34px;
  background: linear-gradient(90deg, #f6dc77 0%, #c1913f 52%, #fff2a3 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.servicios-highlight__text {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #203663;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  line-height: 1.25;
}

.servicios-highlight__text strong {
  font-weight: 800;
}

.procedimiento {
  padding: 70px 0 82px;
}

.procedimiento__intro {
  display: none;
}

.procedimiento__steps-new {
  gap: 14px;
}

.step-line {
  padding: 14px 30px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.62);
}

.step-text {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.testimonios {
  padding: 0 0 58px;
  background: var(--color-white);
}

.testimonios .container {
  max-width: 1280px;
  padding: 0;
}

.testimonios__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding: 22px clamp(20px, 4vw, 56px);
  background: #050505;
  border-top: 6px solid #f0d36a;
  border-bottom: 6px solid #c89443;
  box-sizing: border-box;
}

.testimonios__header p {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.15rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 22vw, 340px);
  padding: 10px clamp(20px, 3vw, 34px);
  background: linear-gradient(90deg, #f6dc77 0%, #c1913f 52%, #fff2a3 100%);
  color: #203663;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  flex-shrink: 0;
}

.testimonios__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.testimonio-card {
  min-height: 250px;
  padding: 30px 28px 18px;
  border-radius: 0;
  background: #f3f4f6;
  text-align: center;
}

.testimonio-card::before,
.author-avatar {
  display: none;
}

.testimonio-card__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-bottom: 24px;
}

.testimonio-card__content p {
  color: #2a3d63;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.38;
  font-style: italic;
}

.testimonio-card__author {
  justify-content: center;
}

.author-name {
  position: relative;
  padding-top: 18px;
  color: #8c95a6;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.author-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 44px;
  height: 2px;
  background: #b5bcc8;
  transform: translateX(-50%);
}

.cta-final {
  padding: 28px 0;
  background: #203663;
}

.cta-final__content {
  gap: 28px;
}

.cta-final__content p {
  color: var(--color-white);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.cta-final .btn--primary {
  min-width: 200px;
  border-radius: 999px;
  background: #d8dbe2;
  color: #203663;
  border-color: #d8dbe2;
}

.cta-final .btn--primary:hover {
  background: var(--color-white);
  color: #203663;
}

.contacto {
  padding: 56px 0 80px;
}

.contacto .container {
  max-width: 1280px;
}

.contacto .section-title {
  margin-bottom: 46px;
  color: #203663;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.contacto .section-title::after {
  display: none;
}

.contacto__info-grid {
  gap: 28px;
  margin-bottom: 48px;
}

.info-card {
  background: transparent;
  padding: 0 20px;
  border-radius: 0;
}

.info-card h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  padding-top: 10px;
  color: #203663;
  font-size: 1rem;
  font-weight: 700;
}

.info-card h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 150px;
  height: 2px;
  background: #b8c0d0;
  transform: translateX(-50%);
}

.info-card p,
.info-card a {
  color: #203663;
  font-size: 1rem;
}

.info-card small {
  display: block;
  color: #203663;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contacto__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 34px;
  padding-top: 44px;
  border-top: 1px solid #cfd5e0;
}

.contacto__form-wrapper {
  padding: 0 12px;
}

.contacto__form-wrapper h3 {
  margin-bottom: 26px;
  color: #203663;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.contact-form {
  gap: 14px;
}

.form-group {
  gap: 6px;
}

.form-group label {
  color: #203663;
  font-size: 0.72rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 18px;
  border: none;
  border-radius: 0;
  background: #f5f6f8;
}

.form-group textarea {
  min-height: 190px;
  resize: vertical;
}

.btn--submit {
  width: 100%;
  min-width: 0;
  padding: 16px 40px;
  background: #1e1e22;
  border-color: #1e1e22;
  border-radius: 0;
}

.btn--submit:hover {
  background: #111216;
  border-color: #111216;
}

.contacto__map {
  position: relative;
  align-self: stretch;
  min-height: 720px;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #eef2f7;
}

.contacto__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  background: #eef2f7;
}

.contacto__map-actions {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contacto__map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(14, 25, 45, 0.18);
}

.contacto__map-action--google {
  background: rgba(255, 255, 255, 0.96);
  color: #1f4fbf;
}

.contacto__map-action--waze {
  background: #33ccff;
  color: #083a4a;
}

.contacto__map-action:hover {
  transform: translateY(-2px);
}

.contacto__map-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 720px;
  padding: 24px;
  color: #203663;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 700px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 110px;
    padding-bottom: 150px;
  }

  .hero__feature-card {
    margin-left: 0;
  }

  .testimonios__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 28px rgba(12, 24, 48, 0.08);
  }

  .nav__link {
    border-bottom-color: rgba(32, 54, 99, 0.12);
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    padding-top: 88px;
    padding-bottom: 150px;
  }

  .hero__content {
    max-width: none;
  }

  .carousel__controls {
    inset: auto 16px 170px;
    transform: none;
  }

  .carousel__control {
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
  }

  .hero__feature-card {
    width: 100%;
  }

  .hero__cta-bar p,
  .cta-banner__text,
  .cta-final__content p {
    text-align: center;
  }

  .servicios-highlight__text {
    font-size: 1.1rem;
  }

  .step-text {
    font-size: 1.2rem;
  }

  .testimonios__header {
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
  }

  .instagram-handle {
    min-width: min(220px, 100%);
    width: min(220px, 100%);
    font-size: 1.8rem;
  }

  .contacto__info-grid {
    gap: 34px;
  }

  .contacto__form-wrapper,
  .contacto__map {
    padding: 0;
  }

  .contacto__map {
    margin-top: 0;
    min-height: 300px;
  }

  .contacto__map-frame,
  .contacto__map-fallback {
    min-height: 300px;
  }

  .contacto__map-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
  }

  .contacto__map-action {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel__controls {
    inset: auto 14px 182px;
  }

  .carousel__indicators {
    bottom: 126px;
  }

  .hero__feature-card {
    padding: 22px 20px;
  }

  .hero__feature-list li {
    font-size: 0.95rem;
  }

  .servicios-highlight {
    padding: 24px 0 28px;
  }

  .testimonios__grid {
    margin-top: 36px;
  }

  .testimonio-card {
    padding: 24px 20px 16px;
  }

  .contacto .section-title {
    font-size: 2rem;
  }

  .btn--submit,
  .cta-final .btn--primary,
  .btn--outline {
    width: 100%;
  }
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  inset: 0;
  background: rgba(14, 21, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.4s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 760px;
  max-height: min(88vh, 760px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #22365a;
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(12, 24, 48, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.2);
  background: #ffffff;
}

.modal-body {
  display: flex;
  flex-direction: row;
  max-height: inherit;
}

.modal-image {
  flex: 1;
  min-height: 360px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-text {
  flex: 1;
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
}

.modal-text h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-text .highlight {
  color: #27ae60;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.modal-text .description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 18px;
}

.modal-text .info-box {
  background: #f8f9fa;
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.85rem;
}

.modal-text .info-box p {
  margin-bottom: 8px;
  color: #333;
}

.btn--whatsapp {
  background: #25d366;
  color: white;
  gap: 10px;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  width: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .modal {
    padding: 14px;
    align-items: flex-start;
  }

  .modal-content {
    max-width: 100%;
    max-height: calc(100svh - 28px);
    margin: auto 0;
    border-radius: 18px;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-image {
    min-height: 170px;
    max-height: 200px;
    position: relative;
  }

  .modal-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 16, 32, 0.18) 0%,
      rgba(10, 16, 32, 0.06) 45%,
      rgba(10, 16, 32, 0.28) 100%
    );
  }

  .modal-text {
    padding: 24px 18px 20px;
    background: #ffffff;
    position: relative;
    z-index: 1;
  }

  .modal-text h2 {
    font-size: 1.22rem;
    color: #1e2f52;
    margin-bottom: 10px;
  }

  .modal-text .highlight {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .modal-text .description {
    font-size: 0.84rem;
    line-height: 1.45;
    color: #5f6675;
  }

  .modal-text .info-box {
    padding: 14px;
    font-size: 0.8rem;
  }

  .btn--whatsapp {
    font-size: 0.84rem;
    padding: 13px 18px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 10px;
  }

  .modal-content {
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }

  .close-modal {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .modal-image {
    min-height: 140px;
    max-height: 160px;
  }

  .modal-text {
    padding: 18px 16px 16px;
  }

  .modal-text h2 {
    font-size: 1.02rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .modal-text .highlight {
    font-size: 0.84rem;
    margin-bottom: 10px;
  }

  .modal-text .description {
    font-size: 0.78rem;
    margin-bottom: 14px;
  }

  .modal-text .info-box {
    margin-bottom: 16px;
  }
}

/* ==========================================
   SILVER / PLATINUM SHIMMER BAR
   ========================================== */
.hero__cta-bar {
  background: linear-gradient(
    90deg, 
    #b8b8b8 0%, 
    #e8e8e8 25%, 
    #ffffff 50%, 
    #e8e8e8 75%, 
    #b8b8b8 100%
  ) !important;
  background-size: 200% 100% !important;
  animation: silverShimmer 4s linear infinite;
  box-shadow: 0 -10px 30px rgba(192, 192, 192, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

@keyframes silverShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero__cta-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero__cta-bar p {
  color: var(--color-navy) !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ==========================================
   CAROUSEL TEXT ANIMATIONS
   ========================================== */
.hero__content {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}

.carousel__content-active .hero__content {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s ease;
}

.carousel__content-active .hero__title-line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.3s;
}

.carousel__content-active .hero__title-line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.5s;
}

.hero__decoration {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel__content-active .hero__decoration {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

/* Final tweaks for white header */
.header {
  background: #ffffff !important;
}

.nav__list .nav__link {
  color: var(--color-navy) !important;
}

.header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

/* ==========================================
   NEW SERVICIOS CAROUSEL
   ========================================== */
.servicios {
  padding: 80px 0 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.servicios__header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

.servicios__carousel {
  position: relative;
  width: 100%;
  background-image: url("images/HEADER PICS/joyas-oro.jpg");
  background-size: cover;
  background-position: center;
}

.servicios__carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.servicios__carousel-inner {
  position: relative;
  z-index: 1;
}

.servicios__slide {
  display: none;
  padding: 60px 0;
  animation: fadeIn 0.8s ease-in-out;
}

.servicios__slide.active {
  display: block;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.info-card-black {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 12px;
  color: white;
  border-left: 4px solid var(--color-gold);
}

.info-card-black h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.info-card-black h3 span {
  font-weight: 300;
  font-size: 1.1rem;
  color: #ccc;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 25px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #eee;
}

.slide-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slide-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.servicios__slide:hover .slide-image img {
  transform: scale(1.05);
}

.servicios__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.servicios__nav-btn:hover {
  background: var(--color-gold);
  color: white;
}

.servicios__prev {
  left: 30px;
}

.servicios__next {
  right: 30px;
}

.servicios__nav-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ==========================================
   VIP BELT
   ========================================== */
.vip-belt {
  background: #0f1c3d; /* Dark Navy from mockup */
  padding: 30px 0;
  width: 100%;
}

.vip-belt__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vip-belt p {
  color: white;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.vip-belt p strong {
  color: white;
  font-weight: 800;
}

.btn--pill {
  background: white;
  color: #0f1c3d;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn--pill:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .slide-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .info-card-black {
    border-left: none;
    border-top: 4px solid var(--color-gold);
  }
  .vip-belt__container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ==========================================
   SERVICIOS BODY - MOCKUP EXACT LAYOUT
   ========================================== */

/* Override old styles */
.servicios {
  padding: 0;
  background: #f0f0f0;
}

.servicios__header {
  padding: 60px 0 40px;
  background: #f0f0f0;
  text-align: center;
}

.servicios__body {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #111111 0%, #232323 100%);
  position: relative;
}

.servicios__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.servicios__info {
  position: relative;
  z-index: 2;
  width: 40%;
  padding: 50px 40px 50px 60px;
}

.servicios__img-area {
  position: relative;
  z-index: 2;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 40px 20px;
  gap: 0;
}

.img-carousel {
  flex: 1;
  max-width: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.img-carousel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

/* Triangle arrow buttons beside the image */
.img-arrow {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
  margin: 0 12px;
}

.img-arrow:hover {
  background: rgba(255,255,255,0.35);
}

/* ==========================================
   VIP BELT - TRUE FULL WIDTH
   ========================================== */
.vip-belt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f1c3d;
  padding: 30px 60px;
  width: 100vw;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.vip-belt p {
  color: white;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 500;
}

.vip-belt p strong {
  font-weight: 800;
}

.vip-belt .btn--pill {
  background: white;
  color: #0f1c3d;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 30px;
}

.vip-belt .btn--pill:hover {
  background: #e8e8e8;
}

/* Responsive */
@media (max-width: 900px) {
  .servicios__body {
    flex-direction: column;
    min-height: auto;
  }
  .servicios__info,
  .servicios__img-area {
    width: 100%;
    padding: 30px 20px;
  }
  .servicios__info {
    padding-bottom: 0;
  }
  .vip-belt {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  .vip-belt .btn--pill {
    margin-left: 0;
  }
}

.servicios {
  padding: 0;
  background: #ffffff;
}

.servicios__header {
  position: relative;
  margin-bottom: 0;
  padding: 68px 0 26px;
  text-align: center;
  background-image:
    linear-gradient(rgba(12, 9, 4, 0.56), rgba(12, 9, 4, 0.56)),
    url("images/POP UP/LINGOTES.jpg");
  background-position: center;
  background-size: cover;
}

.servicios__header .section-title {
  margin-bottom: 10px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.servicios__header .section-title::after {
  display: none;
}

.servicios__header .section-subtitle {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.servicios__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 34px;
  min-height: 430px;
  padding: 22px 72px 50px;
  background-image:
    linear-gradient(rgba(12, 9, 4, 0.56), rgba(12, 9, 4, 0.56)),
    url("images/POP UP/LINGOTES.jpg");
  background-position: center;
  background-size: cover;
}

.servicios__body::before {
  display: none;
}

.servicios__info {
  width: auto;
  padding: 0;
}

.info-card-black {
  width: min(100%, 520px);
  margin-left: auto;
  padding: 28px 34px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  color: var(--color-white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.info-card-black h3 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.info-card-black h3 span {
  color: var(--color-white);
  font-size: 0.98em;
  font-weight: 800;
}

.divider-gold {
  width: min(230px, 70%);
  height: 1px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.82);
}

.check-list li {
  margin-bottom: 4px;
  color: var(--color-white);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
}

.servicios__img-area {
  width: auto;
  justify-content: center;
  padding: 0;
  gap: 18px;
}

.img-carousel {
  flex: 0 1 460px;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.img-carousel img {
  height: 285px;
}

.img-arrow {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-white);
  font-size: 2.3rem;
}

.img-arrow:hover {
  background: transparent;
  color: var(--color-gold-light);
  transform: scale(1.08);
}

.vip-belt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 60px;
  background: #1a2b4e;
  color: #ffffff;
}

.vip-belt p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.vip-belt p strong {
  font-weight: 800;
  color: #ffffff;
}

.vip-belt .btn--pill {
  min-width: 220px;
  padding: 12px 30px;
  background: #ffffff;
  color: #1a2b4e;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.vip-belt .btn--pill:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.servicios__statement {
  position: relative;
  padding: 60px 20px;
  background-color: #d4af37; /* Fallback for older browsers */
  background: linear-gradient(90deg, #bb9335 0%, #f7e691 50%, #bb9335 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.servicios__statement p {
  max-width: 1100px;
  margin: 0 auto;
  color: #1a2b4e;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}

.servicios__statement strong {
  color: #1a2b4e;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .servicios__body {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 18px 26px 40px;
  }

  .info-card-black {
    margin: 0 auto;
  }

  .servicios__img-area {
    gap: 10px;
  }

  .vip-belt {
    padding: 28px 26px;
  }
}

@media (max-width: 768px) {
  .servicios__header {
    padding: 54px 0 22px;
  }

  .servicios__body {
    padding: 12px 18px 32px;
  }

  .info-card-black {
    padding: 24px 22px;
    border-radius: 18px;
  }

  .servicios__img-area {
    gap: 6px;
  }

  .img-carousel {
    flex-basis: 100%;
  }

  .img-carousel img {
    height: 240px;
  }

  .img-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.9rem;
  }

  .vip-belt {
    flex-direction: column;
    text-align: center;
  }

  .vip-belt .btn--pill {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    margin-left: 0;
  }

  .servicios__statement {
    padding: 34px 0 38px;
  }
}

/* ==========================================
   FOOTER (Custom Design)
   ========================================== */
.footer {
  background-color: var(--color-white);
  padding: 50px 0;
  border-top: 1px solid var(--color-gray-200);
  font-family: var(--font-body);
  position: relative;
  z-index: 10;
}

.footer__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__pillar {
  display: flex;
  align-items: center;
}

/* Branding Section */
.footer__pillar--branding {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1.2;
}

.footer__logo-wrapper {
  height: 70px;
  display: flex;
  align-items: center;
}

.footer__logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__brand-name {
  font-weight: 700;
  color: #22365a;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer__rights {
  color: var(--color-gray-500);
  font-size: 0.85rem;
}

/* Navigation Section */
.footer__pillar--links {
  gap: 40px;
  flex: 2;
  justify-content: center;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-weight: 800;
  font-size: 0.9rem;
  color: #22365a;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.footer__link:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

/* Social Section */
.footer__pillar--social {
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.footer__social-btn {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (hover: hover) {
  .footer__social-btn:hover {
    transform: translateY(-8px) rotate(3deg);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  }
}

.footer__social-btn:active {
  transform: translateY(0) rotate(0) scale(0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.1s ease;
}

.footer__social-btn svg {
  width: 38px;
  height: 38px;
}

.footer__social-btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer__social-btn--whatsapp {
  background-color: #25d366;
}

/* Regulation Section */
.footer__pillar--regulation {
  gap: 35px;
  flex: 1.5;
  justify-content: flex-end;
}

.footer__vertical-sep {
  width: 2.5px;
  height: 90px;
  background-color: #22365a;
  border-radius: 2px;
}

.footer__reg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__reg-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: #22365a;
  text-align: center;
  max-width: 155px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.footer__reg-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .footer__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__pillar--branding {
    order: 1;
    width: 45%;
    flex: none;
    align-items: center;
    text-align: center;
  }
  
  .footer__pillar--links {
    order: 2;
    width: 45%;
    flex: none;
  }
  
  .footer__pillar--social {
    order: 3;
    width: 45%;
    flex: none;
    margin-top: 20px;
  }
  
  .footer__pillar--regulation {
    order: 4;
    width: 45%;
    flex: none;
    margin-top: 20px;
    justify-content: center;
  }
  
  .footer__vertical-sep {
     display: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  
  .footer__pillar {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
  }
  
  .footer__pillar--links {
    flex-direction: row;
    gap: 30px;
  }
  
  .footer__pillar--branding {
     margin-bottom: 30px;
  }
  
  .footer__reg-content {
     border-top: 1px solid var(--color-gray-200);
     padding-top: 30px;
     width: 100%;
  }
}

@media (max-width: 480px) {
  .footer__pillar--links {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer__social-btn {
    width: 55px;
    height: 55px;
  }
  
  .footer__social-btn svg {
    width: 32px;
    height: 32px;
  }
}

/* ==========================================
   MOBILE RESPONSIVE FIXES
   ========================================== */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }

  .contacto__form-wrapper {
    padding: 0;
  }

  .contacto__map,
  .contacto__map-frame,
  .contacto__map-fallback {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: max(100vh, 720px);
    min-height: max(100svh, 720px);
    padding-top: var(--header-height);
  }

  .hero__carousel,
  .carousel__slides,
  .carousel__slide {
    min-height: 100%;
  }

  .header__nav {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .hero__layout {
    min-height: calc(100% - var(--header-height));
    padding-top: 108px;
    padding-bottom: 210px;
  }

  .hero__content {
    width: 100%;
    max-width: min(92vw, 640px);
  }

  .hero__title {
    margin-bottom: 1rem;
  }

  .hero__title-line {
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .hero__title-highlight {
    line-height: 1.08;
  }

  .hero__cta-bar {
    gap: 12px;
    padding: 20px 18px;
    min-height: 108px;
  }

  .hero__cta-bar p {
    width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .servicios__body {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 14px 16px 28px;
  }

  .info-card-black {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
  }

  .info-card-black h3 {
    font-size: clamp(1.3rem, 7vw, 1.75rem);
  }

  .check-list li {
    font-size: 0.98rem;
  }

  .servicios__img-area {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
  }

  .img-carousel {
    width: 100%;
    max-width: 100%;
  }

  .img-carousel img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .img-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    margin: 0;
    transform: translateY(-50%);
    background: rgba(12, 9, 4, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .img-arrow--prev {
    left: 10px;
  }

  .img-arrow--next {
    right: 10px;
  }

  .vip-belt {
    gap: 18px;
    padding: 24px 18px;
  }

  .vip-belt p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .servicios__statement {
    padding: 28px 18px 32px;
  }

  .servicios__statement p {
    font-size: clamp(1.02rem, 5vw, 1.28rem);
    line-height: 1.5;
  }

  .testimonios__header p {
    font-size: clamp(1rem, 5.2vw, 1.35rem);
  }

  .testimonios__grid {
    padding: 0 16px;
  }

  .contact-link,
  .info-card p,
  .info-card a,
  .info-card small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contacto {
    padding: 48px 0 64px;
  }

  .contacto .section-title {
    margin-bottom: 34px;
  }

  .contacto__info-grid {
    gap: 26px;
    margin-bottom: 36px;
  }

  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }

  .contacto__form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 16px 14px;
  }

  .form-group textarea {
    min-height: 160px;
  }

  .contacto__map,
  .contacto__map-frame,
  .contacto__map-fallback {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    min-height: max(100vh, 660px);
    min-height: max(100svh, 660px);
  }

  .hero__layout {
    padding-top: 96px;
    padding-bottom: 196px;
  }

  .hero__title-line {
    font-size: clamp(1.05rem, 5.4vw, 1.25rem);
    letter-spacing: 0.05em;
  }

  .hero__title-highlight {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .carousel__controls {
    inset: auto 12px 176px;
  }

  .carousel__control {
    width: 42px;
    height: 42px;
    font-size: 1.45rem;
  }

  .carousel__indicators {
    bottom: 132px;
  }

  .hero__cta-bar p {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .servicios__header {
    padding: 46px 0 18px;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .info-card-black {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .check-list li {
    font-size: 0.92rem;
  }

  .img-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .vip-belt p {
    font-size: 0.92rem;
    letter-spacing: 0.03em;
  }

  .servicios__statement p {
    font-size: 0.98rem;
  }

  .contacto .section-title {
    font-size: 1.85rem;
  }

  .contacto__map-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .contacto__map-action {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }
}
