
@import url('https://fonts.googleapis.com/css2?family=Circular:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');

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

body {
  background-color: #fffdfdb2;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}


.encabezado {
  background-color: #964141;
  padding: 50px 20px 30px;
  margin-bottom: 30px;
}

.encabezado h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fdfcfc;
  margin-bottom: 8px;
}

.encabezado p {
  font-size: 0.95rem;
  color: #faf8f8;
  font-weight: 300;
}

.titulo-fila {
  font-size: 1.3rem;
  font-weight: 700;
  color: #964141;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #964141;
}


.tarjeta {
  background-color: #ffffffc9;
  border: none;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tarjeta h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
  white-space: nowrap;
}

.tarjeta p {
  font-size: 0.78rem;
  color: #7e7b7b;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 300;
}

.tarjeta iframe {
  width: 100%;
  height: 155px;
  border: none;
  border-radius: 6px;
}

.pie {
  background-color: #964141;
  color: #ffffff;
  padding: 30px;
  margin-top: 50px;
  border-top: 1px solid #282828;
  font-size: 0.8rem;
}