/* =====================================================
   GENERAL.CSS ¡¤ Sistema visual Laura Bren
   Paleta:
   Negro / Blanco / #BB1755 / #1B7F79 / #939393
===================================================== */

/* =====================
   Reset b¨¢sico
===================== */
* {
  box-sizing: border-box;
}

/* =====================
   Base
===================== */
body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

/* =====================
   Enlaces
===================== */
a {
  color: #1B7F79;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================
   Layout general
===================== */
main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   Header
===================== */
header {
  background: #fff;
}

.header-separator {
  height: 2px;
  background: #BB1755;
}

/* =====================
   T¨ªtulos
===================== */
h1 {
  background: #000;
  color: #fff;
  padding: 16px 20px;
  font-size: 30px;
  margin: 40px 0 25px;
}

h2 {
  background: #BB1755;
  color: #fff;
  padding: 10px 14px;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #BB1755;
  padding-left: 8px;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  color: #BB1755;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* =====================
   Texto
===================== */
p,
li {
  font-size: 17px;
  color: #000;
}

ul {
  padding-left: 20px;
}

small,
.meta {
  color: #939393;
}

/* =====================
   Citas
===================== */
q,
.quote {
  color: #BB1755;
  font-style: italic;
}

/* =====================
   Botones / CTA
===================== */
.btn,
button,
.cta-link {
  display: inline-block;
  background: #1B7F79;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover,
button:hover,
.cta-link:hover {
  background: #145f59;
  text-decoration: none;
}

/* =====================
   Contenedores con sombra
===================== */
.box {
  padding: 16px 20px;
  border-radius: 4px;
  margin: 24px 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* =====================
   Variantes
===================== */
.box--dark {
  background: #000;
  color: #fff;
}

.box--dark p,
.box--dark li {
  color: #fff;
}

.box--dark a {
  color: #1B7F79;
}

.box--editorial {
  background: #BB1755;
  color: #fff;
}

.box--editorial p,
.box--editorial li {
  color: #fff;
}

.box--editorial a {
  color: #fff;
  text-decoration: underline;
}

/* =====================
   Blog / Editorial
===================== */
.blog-article {
  max-width: 860px;
  margin: 40px auto;
}

.blog-header {
  margin-bottom: 20px;
}

.blog-content {
  padding: 0 8px;
}

/* =====================
   Layouts
===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.two-col .col-left,
.two-col .col-right {
  min-width: 0;
}

/* =====================
   Responsive
===================== */
@media (max-width: 900px) {

  main {
    padding: 0 16px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .blog-article {
    margin: 24px auto;
  }
}
