:root {
  --salmon-color: #ED6F1C;
  /* Un color salmón brillante que empata con la imagen */
  --dark-color: #1a1a1a;
  --gray-color: #7f8c8d;
  --light-border: #f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Code Pro', monospace;
  color: var(--dark-color);
  line-height: 1.5;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Capa oscura para que resalte el texto y logo */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 20vw, 300px);
  z-index: 4;
  /* El filtro asume que si el logo es oscuro, necesites hacerlo claro. 
     Si el logo ya es SVG claro, remueve este filtro.
     Lo dejamos con un pequeño resplandor para separarlo del fondo */
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.6));
  animation: fadeIn 1.2s ease-out;
}

.hero-title {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #e0e0e0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ---------------- FOOTER SECTION ---------------- */
.site-footer {
  background-color: #fff;
  padding: 4.5rem 2rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 35% 35% 30%;
  gap: 2rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--light-border);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-logo {
  width: 180px;
  margin-bottom: 1.5rem;
  display: block;
}

.brand-text {
  color: var(--gray-color);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  color: #a0a0a0;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--dark-color);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  color: var(--salmon-color);
  margin-right: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.contact-value,
.contact-value.address-text {
  color: var(--dark-color);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}

.contact-value.address-text {
  margin-bottom: 1rem;
}

.contact-info a.contact-value:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.map-link {
  color: var(--salmon-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.map-link:hover {
  opacity: 0.7;
}

.legal-column {
  padding-left: 2rem;
}

@media (max-width: 900px) {
  .legal-column {
    padding-left: 0;
  }
}

.legal-links {
  list-style: none;
}

.legal-links li {
  margin-bottom: 1.25rem;
}

.legal-links a {
  color: var(--gray-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--dark-color);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a0a0a0;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }
}

.separator {
  margin: 0 0.75rem;
  color: #dcdcdc;
}