    :root {
        --primary: #0046b3;
        --secondary: #006be6;
        --accent: #00b7ff;
        --light: #f8faff;
        --dark: #1a1f2b;
        --radius: 14px;
        --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
        --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    /* Encabezado */
    .page-header {
        background: var(--gradient);
        color: white;
        text-align: center;
        padding: 80px 20px;
        position: relative;
        overflow: hidden;
    }

    .page-header::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
    }

    .page-header h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .page-title {
   
        color: white !important;

    }

    /* Introducción */
    .intro-section {
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 40px;
        margin-top: -40px;
        position: relative;
        z-index: 10;
        border-left: 5px solid var(--accent);
        text-align: justify;

    }

    .intro-section h2 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .intro-section p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .signature {
        text-align: right;
        font-style: italic;
        color: var(--secondary);
        margin-top: 10px;
    }

    /* Comentarios */
    .comment-card {
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 25px 30px;
        margin-bottom: 25px;
        transition: var(--transition);
        border-top: 4px solid var(--secondary);
    }

    .comment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .user-info {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--gradient);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-weight: bold;
        font-size: 1.3rem;
        margin-right: 15px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .user-name {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .comment-text {
        background: #f8faff;
        border-radius: var(--radius);
        padding: 15px;
        margin-bottom: 15px;
        line-height: 1.6;
        text-align: justify;

    }

    .comment-date {
        text-align: right;
        font-size: 0.85rem;
        color: #6c757d;
    }

    .rating-stars i {
        color: #ffc107;
        margin-right: 2px;
    }

    /* Carrusel */
    .carousel-item img {
        width: 100%;
        max-height: 300px;
        border-radius: var(--radius);
        object-fit: contain;
        background-color: #f8f9fa;
        padding: 5px;
        transition: var(--transition);
    }

    .carousel-item img:hover {
        transform: scale(1.03);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        opacity: 0.95;
    }

    /* Botones debajo del carrusel */
    .carousel-buttons {
        text-align: center;
        margin-top: 10px;
    }

    .carousel-buttons button {
        border-radius: 50px;
        font-weight: 600;
        border: 1px solid var(--secondary);
        background: white;
        color: var(--secondary);
        padding: 6px 16px;
        margin: 0 5px;
        transition: var(--transition);
    }

    .carousel-buttons button:hover {
        background: var(--gradient);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 70, 179, 0.3);
    }

    /* Formulario */
    .form-section {
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 35px;
    }

    .form-section h2 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 25px;
    }

    .form-control {
        border-radius: var(--radius);
        border: 1px solid #d0d7e2;
        padding: 10px 14px;
        transition: var(--transition);
    }

    .form-control:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 0.2rem rgba(0, 183, 255, 0.2);
    }

    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

    .submit-btn {
        background: var(--gradient);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(0, 107, 230, 0.4);
    }

    /* Sin comentarios */
    .no-comments {
        text-align: center;
        background: white;
        padding: 50px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .no-comments i {
        font-size: 3rem;
        color: #999;
        margin-bottom: 15px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .user-info {
            flex-direction: column;
            align-items: flex-start;
        }

        .user-avatar {
            margin-bottom: 10px;
        }
    }

