        :root {
            --primary-color: #4361ee;
            --secondary-color: #3f37c9;
            --accent-color: #4cc9f0;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --success-color: #38b000;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: var(--dark-color);
        }

        /* Header del negocio */
        .provider-header {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 0 0 30px 30px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .provider-header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .provider-header-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }

        .provider-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .provider-category {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            backdrop-filter: blur(5px);
        }

        /* Información del negocio */
        .provider-info-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 1rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .info-text h5 {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .info-text p {
            color: #666;
            margin-bottom: 0;
        }

        /* Botones de acción */
        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .btn-whatsapp {
            background: var(--success-color);
            color: white;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(56, 176, 0, 0.3);
            color: #38b000;
        }

        .btn-whatsapp i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .btn-share {
            background: white;
            color: var(--dark-color);
            border: 1px solid #ddd;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-share:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: var(--light-color);
        }

        .btn-share i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* Tours/Servicios */
        .section-title {
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .tour-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .tour-image-container {
            height: 200px;
            overflow: hidden;
        }

        .tour-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-image {
            transform: scale(1.1);
        }

        .tour-body {
            padding: 1.5rem;
        }

        .tour-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .tour-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .tour-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Reseñas */
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .review-name {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .review-date {
            color: #999;
            font-size: 0.8rem;
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 0.5rem;
        }

        .review-content {
            color: #555;
        }

        /* Formulario de reseña */
        .review-form {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .rating-input {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }

        .rating-input i {
            cursor: pointer;
            font-size: 1.5rem;
            color: #ddd;
            transition: color 0.2s;
        }

        .rating-input i.active {
            color: #ffc107;
        }

        /* No hay tours */
        .no-tours {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .no-tours i {
            font-size: 3rem;
            color: #e0e0e0;
            margin-bottom: 1rem;
        }

        .no-tours h4 {
            color: #555;
            font-weight: 600;
        }