 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: #f5f7ff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #4b5563;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 1.5rem;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: #0066ff;
        }

        .empresa-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .empresa-logo {
            width: 120px;
            height: 120px;
            border-radius: 1rem;
            background-color: #f3f4f6;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .empresa-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .empresa-logo-placeholder {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            background-color: #0066ff;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .empresa-info-header {
            flex: 1;
        }

        .empresa-nombre {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .empresa-nombre h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
        }

        .verificado {
            color: #10b981;
            font-size: 1.25rem;
        }

        .empresa-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6b7280;
            font-size: 0.95rem;
        }

        .meta-item i {
            color: #0066ff;
        }

        .empresa-categorias {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .categoria {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(0, 145, 135, 0.15);
            color: #009187;
            padding: 0.6rem 1.2rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .categoria:hover {
            background-color: rgba(0, 145, 135, 0.25);
            transform: translateY(-2px);
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .content-section {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            border-bottom: none;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #4299e1;
            border-radius: 2px;
        }

        .empresa-descripcion {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 2rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
            /* Añadimos un límite de ancho más específico para forzar el salto de línea */
            width: 100%;
            max-width: 600px; /* Ajusta este valor según el límite deseado */
        }

        /* Estilos para los enlaces de redes sociales */
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .social-link-container:hover {
            transform: translateY(-3px);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .social-name {
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .vacantes-section {
            margin-top: 2rem;
        }

        .redes-section {
            margin-top: 2.5rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Estilos para el botón de favorito */
        .favorito-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #d1d5db;
            transition: color 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
        }

        .favorito-btn:hover {
            color: #f59e0b;
            transform: scale(1.1);
            background-color: #fff8e6;
        }

        .favorito-btn.activo {
            color: #f59e0b;
        }

        .favorito-btn::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-radius: 50%;
            background-color: rgba(245, 158, 11, 0.2);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .favorito-btn:active::before {
            width: 150%;
            height: 150%;
        }

        .favorito-btn.pulsate {
            animation: pulsate 0.3s ease;
        }

        @keyframes pulsate {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .web-btn {
            background-color: rgba(139, 69, 19, 0.1);
            color: #8B4513;
        }

        .web-btn:hover {
            background-color: rgba(139, 69, 19, 0.2);
        }

        /* Nuevos estilos para las etiquetas */
        .tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }

        .tag-azul {
            background-color: rgba(10, 23, 71, 0.1);
            color: #0a1747;
        }

        .tag-azul:hover {
            background-color: rgba(10, 23, 71, 0.2);
        }

        /* Modificado para que sea igual a los demás tags */
        .tag-fundacion {
            background-color: rgba(10, 23, 71, 0.1);
            color: #0a1747;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }

        .tag-fundacion:hover {
            background-color: rgba(10, 23, 71, 0.2);
        }

        .tiktok-gradient {
            background: linear-gradient(90deg, #ff004f, #00f7ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .empresa-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .empresa-logo {
                width: 100px;
                height: 100px;
            }
            
            .favorito-btn {
                top: 1rem;
                right: 1rem;
            }
        }