/* =========================================
   TURISMO DEDICATED PAGE
   ========================================= */

.text-cyan { color: var(--cyan); }

/* === HERO === */
.t-hero {
  padding: 130px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.t-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.t-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.t-hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.t-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* App card image body */
.app-card__body--img {
  padding: 0;
  overflow: hidden;
}
.app-card__body--img img {
  display: block;
  width: 100%;
  height: auto;
}

/* === STATS BAR === */
.t-stats {
  background: var(--black);
  padding: 40px 0;
}
.t-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.t-stats__item {
  padding: 8px 16px;
}
.t-stats__num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.t-stats__label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* === TAG (turismo branded) === */
.t-tag {
  display: inline-block;
  background: #cffafe;
  border: 1px solid rgba(8,145,178,.25);
  color: #164e63;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* === FEATURE BLOCKS (alternating) === */
.t-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.t-feature:last-child { margin-bottom: 0; }

.t-feature--reverse .t-feature__content { order: 2; }
.t-feature--reverse .t-feature__visual  { order: 1; }

.t-feature__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #cffafe;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.t-feature__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.t-feature__desc {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}
.t-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.t-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.t-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #cffafe;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 900;
  margin-top: 1px;
}

/* === MODULES GRID === */
.t-modules {
  background: var(--gray-50);
}
.t-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-module {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.t-module:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--cyan);
}
.t-module__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #cffafe;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.t-module h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.t-module p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
}
.t-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.t-module li {
  font-size: .8rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.t-module li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* === PORTAL SECTION === */
.t-portal {
  background: var(--gray-50);
}

/* === DIFFERENTIATORS (before/after) === */
.t-diff__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.t-diff {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: box-shadow .2s;
}
.t-diff:hover {
  box-shadow: var(--shadow);
}
.t-diff__label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.t-diff__label--before {
  background: #fee2e2;
  color: #991b1b;
}
.t-diff__label--after {
  background: #cffafe;
  color: #164e63;
}
.t-diff__before p,
.t-diff__after p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
.t-diff__after p {
  color: var(--gray-800);
  font-weight: 500;
}
.t-diff__arrow {
  color: var(--cyan);
  flex-shrink: 0;
}

/* === CTA SECTION === */
.t-cta {
  background: linear-gradient(135deg, #0c4a5e 0%, #0891b2 50%, #06b6d4 100%);
}
.t-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.t-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.t-cta__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.t-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.t-cta .btn--turismo {
  background: #fff;
  color: #0891b2;
  border-color: #fff;
}
.t-cta .btn--turismo:hover {
  background: #f0fdff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.t-cta .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.t-cta .btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}
.t-cta__note {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .t-modules__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .t-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .t-hero__subtitle { max-width: 100%; }
  .t-feature { grid-template-columns: 1fr; gap: 32px; }
  .t-feature--reverse .t-feature__content { order: 1; }
  .t-feature--reverse .t-feature__visual  { order: 2; }
  .t-diff { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .t-diff__arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 768px) {
  .t-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .t-modules__grid { grid-template-columns: 1fr; }
  .t-hero { padding: 110px 0 48px; }
  .t-cta__actions { flex-direction: column; }
  .t-cta__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .t-stats__grid { grid-template-columns: 1fr; }
  .t-stats__num { font-size: 1.8rem; }
  .t-hero__title { font-size: 2rem; }
  .t-hero__actions { flex-direction: column; }
  .t-hero__actions .btn { width: 100%; justify-content: center; }
}
