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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2C;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6E0;
  --blush-light: #FBF5F3;
  --blush-dark: #E8D0C8;
  --cream: #FDF8F6;
  --neutral-900: #1A1A1A;
  --neutral-700: #3D3D3D;
  --neutral-500: #6B6B6B;
  --neutral-300: #B8B8B8;
  --neutral-100: #F0F0F0;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.06);
  --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.08);
  --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-500);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.06);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(253, 248, 246, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy);
  transition: transform var(--transition);
}

.logo:hover { transform: scale(1.02); }

.logo-icon {
  color: var(--burgundy);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--neutral-700);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--burgundy); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--neutral-700);
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--neutral-700);
  transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 246, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--neutral-900);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--burgundy); }

.mobile-nav-cta {
  font-family: var(--font-body);
  font-size: 0.9rem !important;
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 14px 40px;
  border-radius: 50px;
  margin-top: 12px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--burgundy);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--neutral-900);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--neutral-500);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--neutral-500);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-img-main {
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.hero-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  z-index: 2;
}

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

.float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--neutral-700);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.float-badge svg { color: var(--burgundy); }

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--neutral-500);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--burgundy);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

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

/* ===== SERVICIOS ===== */
.servicios {
  padding: 120px 0;
  background: var(--white);
}

.servicios .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.servicios .section-desc {
  margin: 0 auto;
}

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

.servicio-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 45, 59, 0.08);
}

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

.servicio-icon {
  color: var(--burgundy);
  margin-bottom: 24px;
}

.servicio-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 12px;
}

.servicio-desc {
  font-size: 0.92rem;
  color: var(--neutral-500);
  line-height: 1.8;
}

/* ===== SOBRE NOSOTRAS ===== */
.sobre {
  padding: 120px 0;
  background: var(--cream);
}

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

.sobre-visual {
  position: relative;
}

.sobre-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sobre-img-1 {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.sobre-img-1 img,
.sobre-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-img-2 {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
}

.sobre-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 4px;
}

.sobre-content .section-header { margin-bottom: 28px; }

.sobre-text {
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.9;
  margin-bottom: 16px;
}

.sobre-valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}

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

.valor-icon {
  color: var(--burgundy);
  flex-shrink: 0;
}

.valor-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neutral-700);
}

/* ===== GALERIA ===== */
.galeria {
  padding: 120px 0;
  background: var(--white);
}

.galeria .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.galeria .section-desc { margin: 0 auto; }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.galeria-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 45, 59, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.galeria-item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.galeria-item--large img {
  height: 100%;
}

.galeria-item--tall {
  grid-column: span 4;
  grid-row: span 2;
}

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

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

.cta-eyebrow { color: rgba(255,255,255,0.6) !important; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-title .accent-italic { color: var(--blush); }

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

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

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

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

.contacto-desc {
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

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

.dato-icon {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.dato-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 4px;
}

.dato-value {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.6;
}

.dato-value a {
  transition: color var(--transition);
}

.dato-value a:hover { color: var(--burgundy); }

/* Form */
.contacto-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--neutral-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-700);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--neutral-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--neutral-900);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-input::placeholder {
  color: var(--neutral-300);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(123, 45, 59, 0.06);
  border-radius: var(--radius-sm);
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

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

.form-success svg { flex-shrink: 0; }

/* ===== MAP ===== */
.map-section {
  border-top: 4px solid var(--cream);
}

.map-section iframe {
  filter: grayscale(30%);
  transition: filter var(--transition);
}

.map-section:hover iframe {
  filter: grayscale(0%);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
}

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

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer-logo .logo-icon { color: var(--blush); }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--blush); }

.footer-links span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  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(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

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

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

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

  .hero-visual {
    height: 500px;
    order: -1;
  }

  .hero-img-main {
    width: 80%;
    height: 80%;
  }

  .hero-img-float {
    width: 50%;
    height: 50%;
  }

  .hero-content {
    max-width: 560px;
  }

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

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

  .sobre-visual { max-width: 500px; }

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

  .galeria-item--large,
  .galeria-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .galeria-item { height: 280px; }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-desc { margin: 0 auto 32px; }
  .cta-actions { justify-content: center; }

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

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

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }

  .header-inner { height: 70px; }
  .mobile-nav { top: 70px; }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-grid { gap: 40px; }

  .hero-visual {
    height: 380px;
  }

  .hero-img-main {
    width: 70%;
    height: 75%;
  }

  .hero-img-float {
    width: 50%;
    height: 55%;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.6rem; }

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

  .servicio-card { padding: 32px 28px; }

  .sobre-img-grid {
    grid-template-columns: 3fr 2fr;
  }

  .sobre-img-1 { min-height: 280px; }

  .sobre-exp-badge {
    bottom: -12px;
    right: -8px;
    padding: 18px 22px;
  }

  .sobre-exp-badge .exp-number { font-size: 1.8rem; }

  .sobre-valores { grid-template-columns: 1fr; }

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

  .galeria-item { height: 240px; }

  .contacto-form-wrap { padding: 32px 24px; }

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

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

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

  .hero-visual { height: 300px; }
  .hero-img-main { width: 75%; height: 70%; }
  .hero-img-float { width: 55%; height: 55%; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }

  .sobre-img-grid { grid-template-columns: 1fr; }
  .sobre-img-2 { display: none; }
}
