/* ── HEADER ── */
.header_container {
  width: 100%;
  height: 90px;
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background);
  position: fixed;
  z-index: 2;
  border-bottom: 1px solid var(--border);
}

.p_header {
  color: var(--muted-foreground);
  font-size: 14px;
}


.back_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--muted-foreground);
  font-size: 14px;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
  width: 140px;
}

.back_btn:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.img_header {
  width: 100px;
  
}

/* ── MAIN ── */
.main_container {
  width: 100%;
  padding-top: 70px;
}

/* ── HERO ── */
.hero {
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to top, rgba(30, 40, 25, 0.75) 0%, rgba(30, 40, 25, 0.5) 60%, transparent 100%),
    url(assets/actividades/heroact.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  z-index: 1;
  padding: 0 24px;
}
.hero_buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn_primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.btn_primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn_secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: rgba(246, 241, 231, 0.15);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.3s ease-in-out;
}

.btn_secondary:hover {
  background: rgba(246, 241, 231, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero_tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero_title {
  font-size: 56px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

.hero_subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.scroll_indicator {
  width: 34px;
  height: 58px;
  border: 2px solid white;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  position: absolute;
  bottom: 40px;
}

.scroll_dot {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
  0%   { transform: translateY(0);    opacity: 1;   }
  50%  { transform: translateY(14px); opacity: 0.5; }
  100% { transform: translateY(0);    opacity: 1;   }
}

/* ── HEADER SECTION ── */
.header_section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.title_header_section {
  font-size: 32px;
  color: var(--primary);
}

.line {
  width: 75px;
  height: 3px;
  background-color: var(--muted-foreground);
  border-radius: 2px;
}

/* ── INTRO ── */
.intro_section {
  width: 100%;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background-color: var(--background);
}

.intro_p {
  max-width: 680px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* ── ACTIVITY SECTIONS ── */
.act_section {
  width: 100%;
  padding: 80px 8%;
  background-color: var(--background);
}

.act_section_alt {
  background-color: var(--card);
}

.act_section_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.act_reverse {
  direction: rtl;
}

.act_reverse > * {
  direction: ltr;
}

.act_img_wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(58, 58, 47, 0.12);
  aspect-ratio: 4/3;
  background-color: var(--muted);
}

.act_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.act_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.act_tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--muted);
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.act_title {
  font-size: 28px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}

.act_info > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.act_sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.act_section_alt .act_sub {
  background-color: var(--muted);
}

.act_sub h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
}

.act_sub > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.act_detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.act_detail span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.act_detail ion-icon {
  font-size: 16px;
  min-width: 16px;
  color: var(--primary);
  margin-top: 1px;
}

/* ── LOGÍSTICA ── */
.logistics_section {
  width: 100%;
  padding: 80px 8%;
  background-color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.logistics_grid {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.logistics_card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(58, 58, 47, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logistics_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 58, 47, 0.1);
}

.logistics_icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.logistics_card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}

.logistics_card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ── CTA FINAL ── */
.cta_section {
  width: 100%;
  padding: 100px 8%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
}

.cta_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 600px;
}

.cta_inner h2 {
  font-size: 36px;
  color: #ffffff;
}

.cta_inner p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.btn_reserve_big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn_reserve_big:hover {
  background-color: #c4945f;
  transform: translateY(-3px);
}

.cta_note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── FOOTER ── */
.footer_min {
  width: 100%;
  padding: 20px 32px;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer_min p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer_min a {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer_min a:hover {
  color: #ffffff;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
  .act_section_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .act_reverse { direction: ltr; }

  .logistics_grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header_container { padding: 0 16px; height: 60px; }
  .back_btn span    { display: none; }
  .back_btn         { width: auto; }
  .img_header       { width: 75px; }
  .main_container   { padding-top: 60px; }
  .hero             { height: calc(100vh - 60px); }
  .hero_title       { font-size: 32px; }
  .hero_subtitle    { font-size: 16px; }
  .scroll_indicator { display: none; }

  .intro_section,
  .act_section,
  .logistics_section { padding: 60px 5%; }

  .act_title  { font-size: 22px; }
  .cta_section{ padding: 60px 5%; }
  .cta_inner h2 { font-size: 26px; }
  .btn_reserve_big { width: 100%; justify-content: center; }
  .title_header_section { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero_title { font-size: 26px; }
  .act_title  { font-size: 20px; }
}