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


/* 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;
}
.book-cta {
  position: relative;
  display: block;
  width: 100%;
  min-height: 380px; /* 👈 más alto */
  padding: clamp(32px, 6vw, 80px);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}


/* VIDEO DE FONDO */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENIDO */
.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

/* TEXTO */
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.5;
  max-width: 520px;
  color: #eaeaea;
}

/* IMAGEN */
.cta-image {
  width: clamp(110px, 18vw, 180px);
  margin-left: auto;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* HOVER */
.book-cta:hover .overlay {
  background-color: rgba(0, 0, 0, 0.65);
}

/* MOBILE */
@media (max-width: 640px) {
  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-image {
    margin-left: 0;
  }
}
