/* =================== FUENTES PERSONALIZADAS =================== */
@font-face {
  font-family: Titulo;
  src: url(../Fuentes/CHICKEN\ Pie\ Height.ttf);
}

@font-face {
  font-family: SubTItulo;
  src: url(../Fuentes/KGPerfectPenmanship.ttf);
}

@font-face {
  font-family: Texto;
  src: url(../Fuentes/Random\ Wednesday.ttf);
}

@font-face {
  font-family: Principal;
  src: url(../Fuentes/TheStudentsTeacher-Regular.ttf);
}

/* =================== PALETA DE COLORES =================== */
:root {
  --Princpal: rgba(146, 99, 153);
  --crema: #f5ecef;
  --morado-oscuro: rgba(117, 48, 134);
  --lavanda: rgba(175, 142, 159);
  --hover: #f0b7e8;
  --acento: #ffd369;
}

/* =================== RESET =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--crema);
  font-family: Texto;
  color: #333;
  line-height: 1.7;
}

/* =================== ENCABEZADO =================== */
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--Princpal);
  padding: 15px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
  height: 60px;
}

.titulo {
  font-family: Titulo;
  font-size: 2rem;
  color: white;
  margin-left: 40%;
  text-align: center;
}

.buttonC {
  background-color: white;
  border: none;
  font-family: Principal;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--Princpal);
  transition: background-color 0.3s ease;
}

.buttonC:hover {
  background-color: var(--hover);
  color: white;
}

/* =================== CONTENIDO =================== */
main.info {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.content-grid.inverso {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-family: SubTItulo;
  font-size: 1.8rem;
  color: var(--morado-oscuro);
  margin-bottom: 15px;
}

.text-content h3 {
  font-family: Principal;
  font-size: 1.2rem;
  color: var(--lavanda);
  margin: 20px 0 10px;
}

.text-content ul {
  padding-left: 20px;
}

.text-content li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  list-style: disc;
  font-family: Texto;
}

/* =================== IMÁGENES =================== */
.img-causas,
.img-factores {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* =================== RESPONSIVO =================== */
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    text-align: center;
  }

  .buttonC {
    margin-top: 15px;
  }

  .header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .text-content {
    text-align: left;
  }
}
