 * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #08256f;
  }

  .topbar {
    height: 78px;
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #08256f;
  }

  .brand-logo {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #08256f, #ff6236);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
  }

  .nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
    font-size: 16px;
  }

  .nav-links a {
    color: #08256f;
    text-decoration: none;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }

  .hero-main {
    min-height: 430px;
    background:
      linear-gradient(rgba(8, 37, 111, 0.35), rgba(8, 37, 111, 0.35)),
      url("https://res.cloudinary.com/dqehz2duc/image/upload/f_auto,q_auto:eco,w_auto/v1777683226/torres-del-paine-banner_phrytc.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
  }

  .hero-overlay h1 {
    color: white;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    text-transform: uppercase;
    margin: 0 0 26px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
  }

  .hero-main-btn {
    display: inline-block;
    background: #ff6236;
    color: white;
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  }

  .featured {
    max-width: 1220px;
    margin: 80px auto 0;
    padding: 0 40px;
  }

  .featured-layout {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 42px;
    align-items: start;
  }

  .featured h2 {
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 400;
    margin: 0 0 40px;
    color: #08256f;
  }

  .featured p {
    color: #4966a3;
    margin-bottom: 36px;
  }

  .featured-content h2,
  .featured-content > p {
    text-align: center;
  }

  .featured-layout .login-card {
  margin-top: 0;
  position: sticky;
  top: 86px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

  .public-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

.public-service-card {
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 100%;
  background: #ffffff;
  border: 1px solid #dbe6f7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(8,37,111,0.10);
  display: flex;
  flex-direction: column;
}

.public-service-card:hover {
  transform: translateY(-6px);
  border-color: #bcd0f5;
  box-shadow: 0 22px 44px rgba(8,37,111,0.16);
}

 .public-service-card img {
  width: 100%;
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  object-fit: cover;
  display: block;
}

 .public-service-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 320px;
}

.btn-ver-servicio {
  margin-top: auto;
}

.card-description {
  min-height: 40px;
}

  .public-service-content h3 {
  margin: 0 0 10px;
  color: #08256f;
  font-size: 22px;
  line-height: 1.2;
}

  .public-service-content p {
  color: #4966a3;
  line-height: 1.55;
}

  .public-price {
  color: #ff6236 !important;
  font-weight: 900;
  font-size: 24px;
  margin-top: auto;
  letter-spacing: -0.4px;
}

.public-service-content button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #ff6236, #ff8a50);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  margin-top: 14px;
  transition: all 0.25s ease;
}

.public-service-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 98, 54, 0.25);
}

  .login-card {
    background: #f7f9ff;
    border: 1px solid #dbe4ff;
    border-radius: 14px;
    padding: 28px;
    width: 100%;
    max-width: 320px;
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(8, 37, 111, 0.06);
  }

  .login-card h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #08256f;
  }

  .login-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #4966a3;
    margin-bottom: 22px;
  }

  input,
  .modal-card select {
    width: 100%;
    padding: 14px 13px;
    margin-bottom: 14px;
    border: 1px solid #c9d4f2;
    background: #ffffff;
    color: #08256f;
    font-size: 15px;
    outline: none;
  }

  input:focus {
    border-color: #08256f;
  }

  .primary-btn,
  .secondary-register-btn {
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
  }

  .primary-btn {
    background: #ff6236;
    transition: background 0.2s;
  }

  .primary-btn:hover {
    background: #e6522b;
  }

  .secondary-register-btn {
    background: #08256f;
    margin-top: 12px;
  }

  .secondary-register-btn:hover {
    background: #061b52;
  }

  #error {
    min-height: 20px;
    color: #c02626;
    font-weight: bold;
    margin-top: 14px;
  }

  .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 37, 111, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

  .modal-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  }

  .modal-card h2 {
    margin-top: 0;
  }

  .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: #08256f;
    color: white;
    font-size: 22px;
    cursor: pointer;
  }

  .features {
    max-width: 1220px;
    margin: 90px auto 80px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 46px;
  }

  .features h2 {
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 400;
    margin: 0;
    line-height: 1.05;
  }

  .features-title p {
  margin-top: 22px;
  color: #4966a3;
  font-size: 17px;
  line-height: 1.8;
  max-width: 340px;
}

  .feature-list {
  border-top: none;
}

  .feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(8, 37, 111, 0.18);
}

  .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(8,37,111,0.06);
}

  .feature-item h3 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 700;
  color: #08256f;
  line-height: 1.1;
}

  .feature-item p {
  margin: 0;
  color: #4966a3;
  line-height: 1.7;
  font-size: 17px;
  max-width: 720px;
}

  .business-section {
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
    padding: 56px 32px 0;
  }

  .business-hero {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
  }

  .pill-label {
    display: inline-block;
    background: #dff7f7;
    color: #0f8f90;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .business-hero h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    color: #08256f;
  }

  .business-hero h2 strong {
    color: #0f9fa8;
  }

  .business-hero p {
    color: #4966a3;
    font-size: 17px;
    line-height: 1.55;
  }

  .business-image {
    height: 280px;
    border-radius: 160px 0 0 160px;
    background:
      linear-gradient(rgba(8,37,111,.05), rgba(8,37,111,.05)),
      url("/assets/business-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 40px rgba(8,37,111,.08);
  }

  .benefits-card {
    max-width: 980px;
    margin: 28px auto 0;
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 12px 30px rgba(8,37,111,.08);
    text-align: center;
    transform: translateY(32px);
  }

  .benefits-card h3 {
    margin: 0 0 22px;
    color: #08256f;
    font-size: 22px;
  }

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

  .benefit-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
    color: #4966a3;
    font-size: 14px;
    line-height: 1.35;
    border-right: 1px solid #dbeafe;
    padding-right: 14px;
  }

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

  .support-section {
    background: #f4fbff;
    padding: 90px 32px 40px;
    text-align: center;
  }

  .support-section h2 {
    margin: 0 0 12px;
    color: #08256f;
    font-size: 34px;
  }

  .support-section > p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #4966a3;
    line-height: 1.5;
  }

  .support-card {
    max-width: 780px;
    margin: 0 auto;
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(8,37,111,.08);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    text-align: left;
  }

  .single-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(8,37,111,0.06);
  }

  .support-info {
    border-right: 1px solid #dbeafe;
    padding-right: 26px;
  }

  .support-info p {
    margin: 0 0 22px;
    color: #2f4b85;
    line-height: 1.6;
  }

  .support-info a {
    color: #0f9fa8;
    font-weight: 700;
    text-decoration: none;
  }

  .social-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
    background: white;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(8,37,111,0.08);
  }

  .social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.12);
  }

  .support-highlight {
    text-align: center;
  }

  .chat-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    background: #dff7f7;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
  }

  .support-highlight h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #08256f;
  }

  .support-highlight p {
    color: #4966a3;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .small-btn {
    display: inline-block;
    background: #08256f;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
  }

  .small-btn:hover {
    transform: translateY(-2px);
  }

  .cta-premium {
    background: linear-gradient(135deg, #075766, #063b73);
    color: white;
    text-align: center;
    padding: 56px 24px;
  }

  .cta-premium h2 {
    margin: 0 0 14px;
    font-size: 34px;
  }

  .cta-premium p {
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.5;
  }

  .cta-premium a {
    display: inline-block;
    background: #0fbbc3;
    color: white;
    padding: 13px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
  }

  .footer-premium {
    max-width: none;
    background: #0d1b2f;
    color: #cbd5e1;
    padding: 46px 32px 24px;
    display: block;
  }

  .footer-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .footer-premium h3 {
    color: white;
    margin: 0 0 14px;
    font-size: 18px;
  }

  .footer-premium p,
  .footer-premium a {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-premium a {
    display: block;
    margin-bottom: 8px;
    text-decoration: underline;
  }

  .footer-premium .brand span {
    color: white;
  }

  .footer-bottom-premium {
    max-width: 1080px;
    margin: 30px auto 0;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #94a3b8;
    font-size: 13px;
  }

  @media (max-width: 900px) {
    .topbar {
      padding: 0 22px;
    }

    .nav-links {
      display: none;
    }

    .hero-main {
      min-height: 360px;
    }

    .featured {
      padding: 0 22px;
    }

    .featured-layout,
    .business-hero,
    .support-card,
    .single-card,
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .featured-layout .login-card {
      position: static;
    }

    .features {
      grid-template-columns: 1fr;
      padding: 0 22px;
    }

    .feature-item {
      grid-template-columns: 40px 1fr;
    }

    .business-image {
      height: 220px;
      border-radius: 24px;
    }

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

    .benefit-item {
      border-right: none;
      border-bottom: 1px solid #dbeafe;
      padding-bottom: 12px;
    }

    .support-info {
      border-right: none;
      border-bottom: 1px solid #dbeafe;
      padding-right: 0;
      padding-bottom: 20px;
    }

    .footer-bottom-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row; /* 🔥 esto es la clave */
}
  }
  .search-box {
  max-width: 620px;
  margin: 0 auto 36px;
}

.search-box input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #dbe6f7;
  border-radius: 999px;
  font-size: 16px;
  color: #08256f;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8,37,111,0.08);
  outline: none;
}

.search-box input:focus {
  border-color: #ff6236;
  box-shadow: 0 0 0 4px rgba(255,98,54,0.12);
}

.empty-services {
  grid-column: 1 / -1;
  text-align: center;
  color: #4966a3;
  font-weight: 700;
  padding: 36px;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid #dbe6f7;
  background: #ffffff;
  color: #08256f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8,37,111,0.08);
}

.filter-btn.active {
  background: linear-gradient(90deg, #08256f, #0b63ce);
  color: white;
  border-color: transparent;
}
.testimonials-section {
  max-width: 1220px;
  margin: 90px auto 80px;
  padding: 0 40px;
}

.testimonials-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.testimonials-header span {
  display: inline-block;
  background: #e8f8f5;
  color: #0f8f90;
  border: 1px solid #c8f0eb;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

.testimonials-header h2 {
  margin: 0 0 16px;
  color: #08256f;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}

.testimonials-header p {
  color: #4966a3;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #dbe6f7;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(8,37,111,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(8,37,111,0.14);
}

.testimonial-stars {
  color: #ff6236;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #2f4b85;
  line-height: 1.7;
  font-size: 16px;
  margin: 0 0 24px;
}

.testimonial-card strong {
  display: block;
  color: #08256f;
  margin-bottom: 6px;
}

.testimonial-card span {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 0 22px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  max-width: 1220px;
  margin: 90px auto 80px;
  padding: 0 40px;
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.faq-header span {
  display: inline-block;
  background: #fff4ed;
  color: #ff6236;
  border: 1px solid #ffd7c8;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

.faq-header h2 {
  margin: 0 0 16px;
  color: #08256f;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.faq-header p {
  margin: 0;
  color: #4966a3;
  font-size: 17px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #dbe6f7;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(8,37,111,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(8,37,111,0.12);
}

.faq-card h3 {
  margin: 0 0 14px;
  color: #08256f;
  font-size: 22px;
  line-height: 1.3;
}

.faq-card p {
  margin: 0;
  color: #4966a3;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 900px) {
  .faq-section {
    padding: 0 22px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.public-image-wrap {
  position: relative;
  overflow: hidden;
}

.public-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.verified-badge,
.premium-badge,
.pro-badge {
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.verified-badge {
  background: #0b6fa4;
}

.premium-badge {
  background: #ff6236;
}

.pro-badge {
  background: #16a34a;
}

.premium-service-card {
  border: 2px solid rgba(255, 98, 54, 0.45);
  box-shadow: 0 18px 42px rgba(255, 98, 54, 0.14);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.trust-row span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}
.featured-badge {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: #9ca3af; /* mismo gris */
  font-size: 14px;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 14px;
}

.footer-links-inline a {
  color: #9ca3af; /* 🔥 mismo color que el texto */
  text-decoration: none;
}

.footer-links-inline a:hover {
  text-decoration: underline;
}

.legal-checkbox-container {
  width: 100%;
  margin: 12px 0 18px 0;
}

.legal-checkbox-container .legal-checkbox {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  color: #334155 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.legal-checkbox-container .legal-checkbox input {
  width: auto !important;
  min-width: auto !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.legal-checkbox-container .legal-checkbox span {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.legal-checkbox-container .legal-checkbox a {
  color: #0b6fa4 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.legal-checkbox-container .legal-checkbox a:hover {
  text-decoration: underline !important;
}

.public-service-card img {
  width: 100%;
  height: auto;
  display: block;
}
.skeleton-card {
  width: 100%;
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(
    90deg,
    #eeeeee 25%,
    #f7f7f7 37%,
    #eeeeee 63%
  );
  background-size: 400% 100%;
  animation: skeleton-loading 1.3s ease-in-out infinite;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@media (max-width: 768px) {
  .skeleton-card {
    min-height: 280px;
    border-radius: 18px;
  }
}
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

#btn-ver-mas-servicios {
  padding: 10px 18px;
  font-size: 14px;
  min-width: auto;
  width: auto;
  border-radius: 10px;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero-main {
    min-height: 520px;
    background-size: cover;
    background-position: center;
  }
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.card-price {
  color: #ff6236;
  font-weight: 900;
  font-size: 20px;
  white-space: nowrap;
}

.card-description {
  font-size: 14px;
  margin: 10px 0;
  color: #4966a3;
}

.card-trust {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #334155;
}

.card-trust span {
  background: #f1f5f9;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.card-top-row {
  min-height: 62px;
}

.card-description {
  min-height: 48px;
}

.card-trust {
  margin-top: auto;
  margin-bottom: 18px;
}

.btn-ver-servicio {
  margin-top: 0 !important;
}

.card-urgency {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.urgency-high {
  background: #fff4ed;
  color: #ff6236;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

.urgency-low {
  background: #ecfdf5;
  color: #16a34a;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
}

.card-safe-note {
  font-size: 12px;
  color: #16a34a;
  font-weight: 800;
  margin-bottom: 12px;
}

/* =====================================================
   TURISMOGO - ACCESS PREMIUM
===================================================== */

.premium-access-card {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.access-header {
  margin-bottom: 24px;
}

.access-kicker {
  display: inline-block;
  background: rgba(255, 98, 54, 0.12);
  color: #ff6236;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.access-header h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #08256f;
}

.access-header p {
  color: #4966a3;
  line-height: 1.6;
}

.access-role-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.access-role-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dbe4ff;
  background: #ffffff;
}

.active-role {
  border: 1px solid #ff6236;
  background: rgba(255,98,54,0.04);
}

.access-role-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #08256f;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.access-role-card h3 {
  margin: 0 0 6px;
  color: #08256f;
  font-size: 16px;
}

.access-role-card p {
  margin: 0;
  font-size: 13px;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dbe4ff;
}

.login-divider span {
  position: relative;
  background: #f7f9ff;
  padding: 0 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.access-login-btn {
  margin-top: 6px;
}

.access-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.owner-access-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #08256f, #0b6fa4);
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.owner-access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8,37,111,0.18);
}

.access-security {
  margin-top: 18px;
  text-align: center;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .access-header h2 {
    font-size: 32px;
  }
}
/* =====================================================
   TURISMOGO - ACCESS CARD COMPACT
===================================================== */

.premium-access-card {
  max-width: 360px;
  padding: 24px;
}

.access-kicker {
  margin-bottom: 12px;
  padding: 7px 12px;
  font-size: 11px;
}

.access-header {
  margin-bottom: 18px;
}

.access-header h2 {
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.access-header p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.access-role-grid {
  gap: 10px;
  margin-bottom: 18px;
}

.access-role-card {
  padding: 13px;
  border-radius: 16px;
}

.access-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 18px;
}

.access-role-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.access-role-card p {
  font-size: 12px;
  line-height: 1.35;
}

.login-divider {
  margin: 18px 0;
}

.premium-access-card input {
  margin-bottom: 10px;
  padding: 13px 14px;
  font-size: 14px;
}

.access-login-btn,
.access-actions button,
.owner-access-btn {
  min-height: 44px;
  padding: 12px 14px;
  font-size: 14px;
}

.access-actions {
  gap: 10px;
  margin-top: 12px;
}

.access-security {
  margin-top: 14px;
  font-size: 11px;
}

#error {
  margin-top: 10px;
  font-size: 13px;
}

.premium-access-card::-webkit-scrollbar {
  width: 6px;
}

.premium-access-card::-webkit-scrollbar-thumb {
  background: rgba(8, 37, 111, 0.22);
  border-radius: 999px;
}

.premium-access-card::-webkit-scrollbar-track {
  background: transparent;
}

