/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1581539250439-c96689b516dd?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 24px 0;
  max-width: 700px;
}

.page-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: 8px 20px;
  border-radius: 2px;
  animation: fadeInUp 0.8s ease forwards;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--off-white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-inner {
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--text);
  transition: var(--transition);
}

.breadcrumb-inner a:hover {
  color: var(--gold);
}

.breadcrumb-inner span {
  color: var(--gold);
}

/* ===== STORY ===== */
.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.story-text .section-desc {
  margin-bottom: 16px;
}

.story-text .section-desc:last-of-type {
  margin-bottom: 0;
}

.story-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-signature img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.story-signature div strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
  font-family: var(--font-serif);
}

.story-signature div span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== TIMELINE ===== */
.timeline {
  background: var(--off-white);
}

.timeline-list {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(188, 6, 13, 0.15);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  min-width: 100px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.timeline-year::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item:nth-child(even) .timeline-year::after {
  right: auto;
  left: -12px;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 28px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== MISSION ===== */
.mission {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mission-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.mission-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== VALUES ===== */
.values {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-steps::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(188, 6, 13, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(188, 6, 13, 0.3);
}

.process-step h4 {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== DIFFERENTIALS ===== */
.diffs {
  background: var(--white);
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.diff-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.diff-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.diff-content h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}

.diff-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== CERTIFICATIONS ===== */
.certs {
  background: #2A2E24;
  color: var(--white);
}

.certs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cert-item {
  text-align: center;
}

.cert-item i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 12px;
}

.cert-item h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cert-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== STATS (NÚMEROS) ===== */
.stats {
  background: #293B13;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
  }

  .timeline-item {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center;
    gap: 16px;
  }

  .timeline-item:nth-child(even) {
    text-align: center !important;
  }

  .timeline-year::after,
  .timeline-list::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .diffs-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
