@charset "utf-8";
/* CSS Document */
	html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
.banner-container {
  position: relative;
}

/* Estilo base para zonas */
.link-zone {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 10;
}

/* 30% izquierda */
.left-zone {
  left: 0;
  width: 30%;
}

/* 30% centro */
.center-zone {
  left: 30%;
  width: 30%;
}

/* El 40% restante queda sin link */

    .page-wrapper {
      padding: 60px 15px;
      text-align: center;
    }

    .page-wrapper h2 {
      font-weight: 700;
      color: #283060;
      margin-bottom: 5px;
    }

    .page-wrapper p.subtitle {
      color: #6c757d;
      margin-bottom: 40px;
    }

    .card-custom {
      position: relative;
      height: 520px;
      border-radius: 20px;
      overflow: hidden;
      color: #fff;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .card-custom img {
      width: 100%;
      height: 140%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.0));
      z-index: 2;
    }

    .card-content {
      position: absolute;
      bottom: 30px;
      left: 30px;
      right: 30px;
      z-index: 3;
      text-align: left;
    }

    .card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .card-title i {
      margin-right: 10px;
      font-size: 22px;
    }

    .card-text {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .btn-outline-light {
      border-radius: 30px;
      padding: 10px 30px;
      font-weight: 600;
    }

    .phone-number {
      font-size: 36px;
      font-weight: 700;
      margin: 15px 0;
    }

    .schedule {
      font-size: 14px;
      opacity: 0.9;
    }

    @media (max-width: 767px) {
      .card-custom {
        margin-bottom: 30px;
        height: 380px;
      }
    }


