/* assets/css/base.css
   Variables, reset, utilities and lightweight grid shared by all templates.
*/
/*
  Ausangate Adventure - plantilla ligera
  HTML + CSS puro. Sin Bootstrap, sin JS, sin librerías externas.
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.prompt-thin {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.prompt-extralight {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.prompt-light {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.prompt-extrabold {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.prompt-black {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.prompt-thin-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.prompt-extralight-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.prompt-light-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.prompt-regular-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.prompt-medium-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.prompt-semibold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.prompt-bold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.prompt-extrabold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.prompt-black-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: italic;
}



@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
/*font-family: "Reddit Sans", sans-serif;*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Jost", sans-serif;*/


:root {
  --blue: #04A1F0;
  --blue-500: #007EBF;
  --blue-900: #026AA1;
  --preblue: #E6F1F7;

  --green-950: #082f25;
  --green-900: #0b3b2f;
  --green-800: #104c3b;
  --green-700: #176346;
  --gold-500: #d99b35;
  --gold-400: #f0bd5c;
  --cream-50: #fbf7ef;
  --cream-100: #f4eadb;
  --ink-950: #17211d;
  --ink-700: #4c5b54;
  --ink-500: #69756f;
  --white: #ffffff;
  --white-500: #EEEEEE;
  --dark: #000000;
  --border: #e8dfd1;
  --shadow: 0 18px 45px rgba(8, 47, 37, .12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-xs: 5px;
  --container: 1250px;

  --font-principal: "Prompt", sans-serif;
  --font-secundario: "Reddit Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--cream-50);
  /*font-family: Arial, Helvetica, sans-serif;*/
  /*font-family: "Reddit Sans", sans-serif;*/
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 8px 12px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Mini grid tipo Bootstrap, pero propia y liviana */
.row {
  --gap-x: 24px;
  --gap-y: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gap-x) * -.5);
  margin-left: calc(var(--gap-x) * -.5);
  margin-top: calc(var(--gap-y) * -1);
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gap-x) * .5);
  padding-left: calc(var(--gap-x) * .5);
  margin-top: var(--gap-y);
}

.g-0 { --gap-x: 0; --gap-y: 0; }
.g-1 { --gap-x: 8px; --gap-y: 8px; }
.g-2 { --gap-x: 12px; --gap-y: 12px; }
.g-3 { --gap-x: 18px; --gap-y: 18px; }
.g-4 { --gap-x: 24px; --gap-y: 24px; }
.g-5 { --gap-x: 32px; --gap-y: 32px; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }


/* Sections */
.section {
  padding-block: 78px;
}

.sectionpopular {
  padding-block: 5px;
  padding-top: 20px;
  background: #fff;
  border-top: solid 1px #EEE;
}

.sectiontours{
  padding-block: 5px;
  padding-top: 10px;
  background: #fff;
  padding-bottom: 40px;
}

.section--intro {
  background: var(--white);
}

.section--soft {
  background: var(--cream-400);
}

.section--cta {
  padding-block: 54px;
  background: var(--green-950);
}

.section h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section p {
  color: var(--ink-700);
}

.lead {
  font-size: 18px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.tour-card,
.category-card,
.detail-card,
.cta-box {
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--green-900);
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  margin-top: 8px;
  color: var(--ink-500);
}

.tour-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.tour-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
}

.tour-card__body {
  padding: 18px;
}

.tour-card__meta {
  margin: 0 0 8px;
  color: var(--gold-500) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card h3,
.category-card h3,
.detail-card h3 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.2;
}

.tour-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

.tour-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-card__bottom strong {
  color: var(--green-900);
}

.tour-card__bottom a,
.category-card a {
  color: var(--green-700);
  font-weight: 900;
}

.category-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card div {
  padding: 22px;
}

.detail-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  height: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.detail-card img {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  object-fit: cover;
}

.detail-card p {
  margin-bottom: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}


/* Responsive grid */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

@media (max-width: 1100px) {
  .desktop-trigger {
    padding-inline: 10px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: -34px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    font-size: 13px;
  }

  .topbar__inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .topbar__left a:not(:first-child),
  .topbar__right {
    display: none;
  }

  .brandbar__inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    max-width: 150px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-actions,
  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .hero {
    min-height: 520px;
  }

  .hero__content {
    padding-block: 70px;
  }

  .section {
    padding-block: 56px;
  }

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .brand__text small {
    max-width: 116px;
  }

  .mobile-actions {
    gap: 5px;
  }

  .mobile-icon {
    width: 31px;
    height: 36px;
    font-size: 20px;
  }

  .language-pill {
    min-width: 52px;
    padding-inline: 4px;
    font-size: 20px;
  }

  .hamburger {
    width: 42px;
    height: 38px;
    gap: 6px;
  }

  .hamburger span {
    width: 36px;
    height: 5px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .drawer-quick {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.price-row sup {
  font-size: 15px;
  font-weight: 500;
  margin-left: 2px;
  margin-right: 2px;
}

.price-row .price {
  color: #33C154;  
  font-size:30px;
}


.sticky-price sup {
  color: #33C154;
  font-size: 15px;
  font-weight: 500;
  margin-left: 2px;
  margin-right: 2px;

}


.sticky-price .price2 {
  color: #33C154;  
  font-size:50px;
}