
      /* Estilos específicos para la página de tarifas */
      .tarifas-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url("../img/gecotel_cover.jpg") no-repeat center center !important;
        background-size: cover;
        padding: 100px 0;
        text-align: center;
        color: white;
      }

      .tarifas-section {
        padding: 70px 0;
      }

      .tarifas-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .tarifas-header h2 {
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
      }

      .tarifas-header h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #ffc107;
      }

      .tarifas-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        overflow: hidden;
      }

      .tarifas-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .tarifas-card-header {
        background: #ffc107;
        color: white;
        padding: 20px;
        text-align: center;
      }

      .tarifas-card-header h3 {
        font-weight: 700;
        margin: 0;
      }

      .tarifas-card-body {
        padding: 30px;
      }

      .tarifa-precio {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffc107;
        margin-bottom: 20px;
      }

      .tarifa-periodo {
        font-size: 0.9rem;
        color: #777;
      }

      .tarifa-caracteristicas {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
      }

      .tarifa-caracteristicas li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
      }

      .tarifa-caracteristicas li:last-child {
        border-bottom: none;
      }

      .tarifa-caracteristicas li i {
        color: #ffc107;
        margin-right: 10px;
      }

      .tarifa-btn {
        display: block;
        width: 100%;
        padding: 12px;
        background: #ffc107;
        color: white;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
      }

      .tarifa-btn:hover {
        background: #ffc107;
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      }

      .servicios-tarifas {
        background-color: #f8f9fa;
        padding: 70px 0;
      }

      .servicio-tarifa-item {
        background: white;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .servicio-tarifa-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      }

      .servicio-tarifa-icon {
        font-size: 2.5rem;
        color: #ffc107;
        margin-bottom: 15px;
      }

      .servicio-tarifa-title {
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
      }

      .servicio-tarifa-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #ffc107;
        margin-bottom: 15px;
      }

      .servicio-tarifa-desc {
        color: #666;
        margin-bottom: 20px;
      }

      .tabla-tarifas {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .tabla-tarifas th {
        background: #ffc107;
        color: white;
        padding: 15px;
        text-align: left;
      }

      .tabla-tarifas td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
      }

      .tabla-tarifas tr:nth-child(even) {
        background-color: #f8f9fa;
      }

      .tabla-tarifas tr:hover {
        background-color: #e9f0ff;
      }

      .destacado {
        background-color: #e6f2ff !important;
        font-weight: 600;
      }

      .nota-tarifas {
        background: #f0f7ff;
        border-left: 4px solid #ffc107;
        padding: 15px;
        margin: 30px 0;
        border-radius: 0 5px 5px 0;
      }

      @media (max-width: 768px) {
        .tarifas-hero h1 {
          font-size: 2.5rem;
        }

        .tarifas-card {
          margin-bottom: 20px;
        }

        .tabla-tarifas {
          font-size: 0.9rem;
        }
      }
