/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a1f3f;
  --navy-light: #132d54;
  --navy-dark: #061529;
  --gold: #c8a44e;
  --gold-light: #d4b76a;
  --gold-dark: #b8933f;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-50: #faf9f7;
  --gray-100: #f3f1ed;
  --gray-200: #e8e5df;
  --gray-300: #d1cdc4;
  --gray-400: #a8a29a;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --shadow-sm: 0 1px 3px rgba(10,31,63,0.08);
  --shadow-md: 0 4px 16px rgba(10,31,63,0.1);
  --shadow-lg: 0 8px 32px rgba(10,31,63,0.12);
  --shadow-xl: 0 16px 48px rgba(10,31,63,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.text-gold {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,164,78,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-header__eyebrow::before { left: -8px; }
.section-header__eyebrow::after { right: -8px; }

.section-header__eyebrow--dark {
  color: var(--gold);
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-header__title--light {
  color: var(--white);
}

.section-header__title--dark {
  color: var(--white);
}

.section-header__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 63, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,164,78,0.15);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.header__logo:hover .header__logo-mark {
  background: var(--gold-light);
  transform: rotate(-5deg) scale(1.05);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  text-align: center;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-overlay__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-overlay__link--cta {
  color: var(--gold);
  margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -150px;
  left: -100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 30%;
  left: 45%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.03;
}

.hero__shape--4 {
  width: 120px;
  height: 120px;
  background: var(--gold);
  top: 20%;
  left: 20%;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,78,0.12);
  border: 1px solid rgba(200,164,78,0.25);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}

.hero__image-accent {
  position: absolute;
  border-radius: var(--radius-md);
}

.hero__image-accent--1 {
  width: 120px;
  height: 120px;
  background: var(--gold);
  top: -20px;
  right: -20px;
  opacity: 0.3;
  z-index: -1;
}

.hero__image-accent--2 {
  width: 80px;
  height: 80px;
  background: var(--navy-light);
  border: 3px solid var(--gold);
  bottom: 40px;
  left: -30px;
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero__floating-card--1 {
  bottom: 80px;
  right: -20px;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  top: 40px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SERVICIOS ===== */
.servicios {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

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

.servicio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.servicio-card:hover::before {
  transform: scaleX(1);
}

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

.servicio-card--gold::before {
  background: var(--gold);
  transform: scaleX(1);
}

.servicio-card--gold:hover {
  background: var(--navy-light);
}

.servicio-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}

.servicio-card__icon-wrap {
  margin-bottom: 20px;
}

.servicio-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(200,164,78,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.servicio-card:hover .servicio-card__icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.servicio-card--gold .servicio-card__icon {
  background: rgba(200,164,78,0.2);
  color: var(--gold);
}

.servicio-card--gold:hover .servicio-card__icon {
  background: var(--gold);
  color: var(--navy);
}

.servicio-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.servicio-card--gold .servicio-card__title {
  color: var(--white);
}

.servicio-card__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.servicio-card--gold .servicio-card__desc {
  color: rgba(255,255,255,0.6);
}

.servicio-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servicio-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.servicio-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.servicio-card--gold .servicio-card__list li {
  color: rgba(255,255,255,0.7);
}

/* ===== NOSOTROS ===== */
.nosotros {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

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

.nosotros__image-stack {
  position: relative;
}

.nosotros__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.nosotros__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 13/16;
}

.nosotros__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.nosotros__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}

.nosotros__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.nosotros__experience-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.nosotros__experience-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.nosotros__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.nosotros__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.nosotros__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nosotros__value-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(200,164,78,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.nosotros__value strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.nosotros__value span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== DIFERENCIAS ===== */
.diferencias {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.diferencias__bg-block {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,164,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,164,78,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.diferencias__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.diferencias__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.diferencia-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.diferencia-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,164,78,0.3);
  transform: translateY(-4px);
}

.diferencia-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.diferencia-item__title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.diferencia-item__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ===== TESTIMONIOS ===== */
.testimonios {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.testimonios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

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

.testimonio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.testimonio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonio-card--gold {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonio-card--gold:hover {
  background: var(--navy-light);
}

.testimonio-card__quote-icon {
  margin-bottom: 20px;
}

.testimonio-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonio-card--gold .testimonio-card__text {
  color: rgba(255,255,255,0.75);
}

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

.testimonio-card__author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}

.testimonio-card--gold .testimonio-card__author-avatar {
  background: rgba(200,164,78,0.2);
  color: var(--gold);
}

.testimonio-card__author-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonio-card--gold .testimonio-card__author-name {
  color: var(--white);
}

.testimonio-card__author-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.testimonio-card--gold .testimonio-card__author-detail {
  color: rgba(255,255,255,0.45);
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}

.cta__shape--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
}

.cta__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: 10%;
}

.cta__shape--3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 30%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta__image-side {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta__image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

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

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contacto__text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contacto__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacto__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacto__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(200,164,78,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contacto__detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contacto__detail span,
.contacto__detail a {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

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

/* FORM */
.contacto__form-side {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,78,0.15);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Epolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 16px 0 8px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ===== MAPA ===== */
.mapa {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.mapa__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
}

.mapa__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,63,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapa__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
}

.mapa__card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.mapa__card-address {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer__contact-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__container {
    gap: 40px;
  }

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

  .nosotros__inner {
    gap: 48px;
  }

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

  .testimonio-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero__floating-card--1 {
    right: 0;
  }

  .hero__floating-card--2 {
    left: 0;
  }

  .hero__stats {
    gap: 20px;
  }

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

  .nosotros__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nosotros__image-stack {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .testimonio-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .cta__image-side {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contacto__form-side {
    padding: 28px;
  }

  .mapa {
    height: 280px;
  }

  .mapa__card {
    padding: 28px 24px;
    margin: 0 16px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .hero__title {
    font-size: 1.9rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .servicios,
  .nosotros,
  .diferencias,
  .testimonios,
  .cta,
  .contacto {
    padding: 72px 0;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    justify-content: center;
  }
}
