/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: black;
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: gold;
  text-decoration: none;
  font-family: 'Cinzel', serif;
}

.logo img {
  height: 60px;
}

/* HERO */
.about-hero {
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: url("img/istockphoto-1471448614-612x612.jpg") center/cover no-repeat;
}

/* OVERLAY */
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 70px);
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 20px gold;
}

.hero-content p {
  margin-top: 10px;
  opacity: 0.8;
}

/* SECTION */
.section {
  padding: 100px 20px;
}

.content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.content h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
  color: gold;
}

/* TEXT */
.content p {
  opacity: 0.8;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
/* ================= ABOUT FULL PAGE ================= */
/* ================= ABOUT LAYOUT PRO ================= */

.about-full {
  background: #000;
  color: white;
}

/* HERO */
.about-hero {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 20px;
}

.about-hero h1 {
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: 4px;
}

/* BLOQUES */
.about-block {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 80px;

  padding: 120px 10%;
}

/* alternado */
.about-block.reverse {
  flex-direction: row-reverse;
}

/* IMAGEN */
.about-img {
  flex: 1;
  max-width: 600px;
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.about-text {
  flex: 1;
  max-width: 500px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 20px;
}

/* ESPACIADO ENTRE BLOQUES */
.about-block + .about-block {
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .about-block {
    flex-direction: column;
    gap: 40px;
    padding: 80px 20px;
  }

  .about-block.reverse {
    flex-direction: column;
  }

  .about-img img {
    height: 260px;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-text p {
    font-size: 16px;
  }
}
.newspaper {
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0,0,0,0.15);
}

.header-periodico {
  color: #000;
  text-align: center;
  border-bottom: 3px solid #111;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 2px;
  margin: 0;
}

.header p {
  margin: 5px 0 0;
  font-size: 12px;
  letter-spacing: 2px;
}

.columns {
  color: #000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.column {
  border-right: 1px solid #ddd;
  padding-right: 15px;
}

.column:last-child {
  border-right: none;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
}

.photo {
  width: 100%;
  margin: 10px 0;
  border: 1px solid #ccc;
}

.photo img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

.caption {
  font-size: 10px;
  text-align: center;
  margin-top: 4px;
  color: #555;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
  }
}