/* ── Navbar más alta solo en la landing ── */
.page-landing .nav-container {
  height: 140px;
}

/* ===== HERO ===== */
.hero-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.2,0.8,0.3,1) 0.3s both;
  filter: drop-shadow(0 8px 24px rgba(213,91,44,0.35));
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-title {
  margin-bottom: 0;
}


.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(213,91,44,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #1c224d 0%, #0d1232 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-white), transparent);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(213,91,44,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 24px 80px;
  max-width: 680px;
  padding-left: 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(213,91,44,0.15);
  border: 1px solid rgba(213,91,44,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
}

.reveal-word {
  display: block;
  animation: slideUp 0.8s cubic-bezier(0.2,0.8,0.3,1) both;
}
.reveal-word:nth-child(1) { animation-delay: 0.3s; }
.reveal-word:nth-child(2) { animation-delay: 0.5s; }
.reveal-word.accent { color: var(--orange); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 140px;
  right: 10%;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease infinite;
  cursor: pointer;
}
.scroll-arrow::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg) translateY(-3px);
  display: block;
}

/* ===== NOSOTROS ===== */
.nosotros { background: var(--bg-white); }

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

.nosotros-image { position: relative; }

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.float-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 40px rgba(213,91,44,0.4);
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.stat-item { text-align: center; }
.big-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.small-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
  max-width: 80px;
}

/* ===== SERVICIOS ===== */
.servicios { background: var(--bg-light); }

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

.servicio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.servicio-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.servicio-card.featured h3,
.servicio-card.featured p { color: var(--white); }
.servicio-card.featured p { opacity: 0.75; }

.servicio-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.servicio-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.servicio-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.popular-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== EVENTOS ===== */
.eventos {
  background: var(--bg-white);
  min-height: 600px;
}

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

.cloche-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 380px;
  justify-content: flex-end;
}

.cloche-plate {
  width: 280px;
  height: 20px;
  background: linear-gradient(180deg, #c0c0c0, #909090);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.plate-inner {
  position: absolute;
  top: -6px; left: 10px; right: 10px;
  height: 12px;
  background: linear-gradient(180deg, #d8d8d8, #b0b0b0);
  border-radius: 50%;
}

.cloche-lid {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: clocheRevealAnim 3s ease 1s both;
}

.lid-dome {
  width: 240px;
  height: 160px;
  background: linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 40%, #c8c8c8 100%);
  border-radius: 120px 120px 0 0;
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.15), 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.lid-dome::before {
  content: '';
  position: absolute;
  top: 20px; left: 30px; right: 60%;
  height: 60px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
}

.lid-handle {
  width: 40px;
  height: 20px;
  background: linear-gradient(180deg, #b8b8b8, #888);
  border-radius: 50%;
  margin: 0 auto;
  transform: translateY(-8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.steam {
  position: absolute;
  width: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  animation: steamRise 2s ease-in-out infinite;
  top: -40px;
}
.steam1 { left: 40%; height: 30px; animation-delay: 0s; }
.steam2 { left: 50%; height: 20px; animation-delay: 0.4s; }
.steam3 { left: 60%; height: 25px; animation-delay: 0.8s; }

.cloche-reveal {
  position: absolute;
  bottom: 30px;
  text-align: center;
  opacity: 0;
  animation: revealText 0.8s ease 3.5s both;
}

.proximamente-text {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  letter-spacing: -1px;
}

.proximamente-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 8px;
}

.countdown-hint {
  background: rgba(213,91,44,0.08);
  border: 1px solid rgba(213,91,44,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
}
.countdown-hint:hover {
  background: rgba(213,91,44,0.15);
}

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

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

.footer-logo { height: 72px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 280px; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  50% { opacity: 0.8; transform: translateY(-20px) scaleX(1.5); }
  100% { opacity: 0; transform: translateY(-40px) scaleX(0.5); }
}
@keyframes clocheRevealAnim {
  0% { transform: translateX(-50%) translateY(0); }
  60% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-220px); }
}
@keyframes revealText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-grid, .eventos-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { padding-left: 24px; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }
  .float-stat { right: 0; bottom: -16px; padding: 14px 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-icon { width: 72px; height: 72px; }
  .hero-title-row { gap: 16px; }
}
