/* Sección de compartir */
  .share-section {
            margin-top: 20px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .share-btn {
            background: #D4AF37;
            color: #2E2E2E;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .share-btn:hover {
            background: #C8102E;
            color: #FFFFFF;
        }

        .share-btn i {
            font-size: 1.1rem;
        }

        .share-options {
            display: none;
            margin-top: 15px;
            animation: fadeIn 0.4s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 15px 0;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: #C8102E;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #D4AF37;
            transform: scale(1.1) rotate(10deg);
        }