@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:300,600,300italic,600italic");

/*
	Solid State by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000;
}

/* HERO */
.hero {
  background-color: #111;
  padding: 60px 20px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* CONTENIDO */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
/* imagen */
.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;   /* fuerza el cuadrado */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* recorta sin deformar */
  object-position: top;
  display: block;
}

/* TEXTO */
.hero-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.signature {
  margin-top: 30px;
  font-size: 1.1rem;
  font-style: italic;
  text-align: right;
}

/* VIDEO */
.video-section {
  background-color: #e5f0f8;
  padding: 60px 2em;
  margin: 5em 0;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* VIDEO RESPONSIVE */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .signature {
    text-align: left;
  }
}
