/* ============================= */
/* PÁGINA ORIGEN - ESTOICOAM     */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Crimson Text", serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.8;
}

/* ============================= */
/* HEADER                        */
/* ============================= */

header {
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
  height: 100px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

header .logo:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 10px #ffffff);
}

.hamburger {
  font-size: 30px;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: 300;
  z-index: 901;
}

.hamburger:hover {
  color: #d4af37;
}

.hamburger.active {
  opacity: 0;
  pointer-events: none;
}

/* ============================= */
/* HERO SECTION                  */
/* ============================= */

.hero-origen {
  min-height: 60vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.hero-content {
  text-align: left;
  max-width: 900px;
}

.modulo {
  font-size: 25px;
  color: #d4af37;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* ============================= */
/* CONTENT SECTION               */
/* ============================= */

.content-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #333333;
}

.column-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: #d4af37;
  margin: 20px 0;
}

.subtitle-italic {
  font-size: 36px;
  color: #d4af37;
  font-style: italic;
  font-weight: 400;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* ============================= */
/* DESCRIPTION                   */
/* ============================= */

.description {
  color: #cccccc;
}

.description h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #ffffff;
  margin: 40px 0 20px 0;
}

.description p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.modules-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.modules-list li {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.modules-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 24px;
}

.modules-list strong {
  color: #d4af37;
}

/* ============================= */
/* CTA                           */
/* ============================= */

.cta-btn-container {
  text-align: center;
  margin: 80px 0 40px 0;
}

.cta-btn {
  display: inline-block;
  background: #d4af37;
  color: #000000;
  padding: 18px 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #000000;
  color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

/* ============================= */
/* BOTÓN VOLVER                  */
/* ============================= */

.back-button-container {
  text-align: center;
  margin: 80px 0 40px 0;
}

.back-button {
  display: inline-block;
  background-color: #d4af37;
  color: #000000;
  padding: 16px 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #000000;
  color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

/* ============================= */
/* FOOTER                        */
/* ============================= */

footer {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-copyright,
.footer-social,
.footer-email {
  font-size: 14px;
  color: #000000;
  margin: 10px 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 20px 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: 100%;
}

.footer-legal a {
  color: #000000 !important;
  text-decoration: none;
  font-size: 13px;
  padding: 0 25px;
  border-right: 2px solid #d4af37;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.footer-legal a:last-child {
  border-right: none;
}

.footer-legal a:hover {
  color: #d4af37 !important;
  letter-spacing: 1px;
}

.footer-email a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: #b8942f !important;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .content-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .column-left h2 {
    font-size: 32px;
  }

  .subtitle-italic {
    font-size: 28px;
  }
}
